3730f8bd0c
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.