-
Notifications
You must be signed in to change notification settings - Fork 8
Description
I'm planning on using this tool to parse the logs of a Postfix server. The logs are rotated daily at 02:00. I do not want to miss any mail logs. Timing the parse job right before the rotation could mean I miss some mail logs.
A suggestion would be to parse multiple logs via a wildcard, so when we run the parse job, it will see the logs in the active log as well as the rotated one (we keep the active log and the last day log uncompressed). This assumes that duplicate logs are not imported and it would be safe (not duplicating data, not placing heavy load on the server) to run this parse job every 15 minutes.
a typical daily mail log is about 75 to 100 mb in size uncompressed.
There might be a better solution, thank you for considering my use case!