summaryrefslogtreecommitdiffstats
path: root/system/netdata.logrotate.in
diff options
context:
space:
mode:
authorMatthew Newton <mcn4@leicester.ac.uk>2016-04-03 21:12:54 +0100
committerMatthew Newton <mcn4@leicester.ac.uk>2016-04-08 23:20:26 +0100
commit20d02ef9a8263ade48fe5480edf36725529e5487 (patch)
tree4e47b94240b1d96f0b1c762059c3a7cbbb5ea615 /system/netdata.logrotate.in
parentee7751c588f8808876832085468036d955ed38a2 (diff)
Add logrotate configuration
Diffstat (limited to 'system/netdata.logrotate.in')
-rw-r--r--system/netdata.logrotate.in15
1 files changed, 15 insertions, 0 deletions
diff --git a/system/netdata.logrotate.in b/system/netdata.logrotate.in
new file mode 100644
index 0000000000..763eb09c93
--- /dev/null
+++ b/system/netdata.logrotate.in
@@ -0,0 +1,15 @@
+@localstatedir_POST@/log/netdata/*.log {
+ daily
+ missingok
+ rotate 14
+ compress
+ delaycompress
+ notifempty
+ sharedscripts
+ postrotate
+ if service netdata status > /dev/null ; then \
+ service netdata restart > /dev/null; \
+ fi;
+ endscript
+}
+