summaryrefslogtreecommitdiffstats
path: root/extras
diff options
context:
space:
mode:
authorSunny Kumar <sunkumar@redhat.com>2019-12-27 13:26:04 +0000
committerAmar Tumballi <amarts@gmail.com>2019-12-27 17:00:46 +0000
commitf2a86ddf9331cd7387c44ba03307adac43575fc4 (patch)
tree34588ee0538d70059599c0285d23b2ad8ebd43b6 /extras
parent7656aec3b9ef60592c8cf251dfb5cdb6088cd328 (diff)
downloadglusterfs-f2a86ddf9331cd7387c44ba03307adac43575fc4.tar.gz
glusterfs-f2a86ddf9331cd7387c44ba03307adac43575fc4.tar.xz
glusterfs-f2a86ddf9331cd7387c44ba03307adac43575fc4.zip
extras: enable log rotation for USS logs
Added logrotate support for user serviceable snapshot's logs. Change-Id: Ic920eaa8ab5e44daf5937a027c6913d7bb26d517 Fixes: bz#1786722 Signed-off-by: Sunny Kumar <sunkumar@redhat.com>
Diffstat (limited to 'extras')
-rw-r--r--extras/glusterfs-logrotate21
1 files changed, 21 insertions, 0 deletions
diff --git a/extras/glusterfs-logrotate b/extras/glusterfs-logrotate
index 75f700e645..6ba6ef18e9 100644
--- a/extras/glusterfs-logrotate
+++ b/extras/glusterfs-logrotate
@@ -45,3 +45,24 @@
compress
delaycompress
}
+
+# Rotate snapd log
+/var/log/glusterfs/snaps/*/*.log {
+ sharedscripts
+ weekly
+ maxsize 10M
+ minsize 100k
+
+ # 6 months of logs are good enough
+ rotate 26
+
+ missingok
+ compress
+ delaycompress
+ notifempty
+ postrotate
+ for pid in `ps -aef | grep glusterfs | egrep "snapd" | awk '{print $2}'`; do
+ /usr/bin/kill -HUP $pid > /dev/null 2>&1 || true
+ done
+ endscript
+}