mongodb.logrotate 205 B

1234567891011121314
  1. # Default log rotation / compression keeps 1 year of logs.
  2. /var/log/mongodb/*.log {
  3. daily
  4. rotate 365
  5. dateext
  6. copytruncate
  7. delaycompress
  8. compress
  9. notifempty
  10. extension gz
  11. sharedscripts
  12. missingok
  13. }