08fc2e0745
Previous commit used string comparison which failed across month/year boundaries (e.g., "01/Jan/2026" < "31/Dec/2025" due to day comparison). Now converts timestamps to epoch seconds for proper numerical comparison: - Cutoff calculated as epoch seconds (date +%s) - Apache log timestamps converted from "dd/mmm/yyyy:HH:MM:SS" format - Format conversion: replace slashes and first colon with spaces - Numerical comparison ensures correct ordering across all boundaries Tested with dates spanning year/month changes - works correctly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>