public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] crontab: add periodic cleanup the collectd RRD (graphs)
@ 2022-08-25  0:31 Jon Murphy
  2022-08-25 10:24 ` Bernhard Bitsch
  2022-08-25 10:48 ` Michael Tremer
  0 siblings, 2 replies; 6+ messages in thread
From: Jon Murphy @ 2022-08-25  0:31 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 979 bytes --]

- Created (mostly) for old openvpn graphs
- RRD removed when no graph modification for +365 days
  - chosen since graph max out is 365 days
- fcron job runs once per week
  - chosen since this is just a cleanup and it doesnt need to run everyday
Note: logging can be added if needed.

Signed-off-by: Jon Murphy <jon.murphy(a)ipfire.org>
---
 config/cron/crontab | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/config/cron/crontab b/config/cron/crontab
index b727531fc..7088e0b75 100644
--- a/config/cron/crontab
+++ b/config/cron/crontab
@@ -80,5 +80,8 @@ HOME=/
 # Cleanup the mail spool directory
 %weekly * * /usr/sbin/dma-cleanup-spool
 
+# Cleanup the collectd RRD (graphs)
+%weekly * * /bin/find /var/log/rrd -mtime +365 -type f -name '*.rrd' -delete -o -type d -empty -delete
+
 # Update DNS trust anchor
 %daily,random * * @runas(nobody) /usr/sbin/unbound-anchor -a /var/lib/unbound/root.key -c /etc/unbound/icannbundle.pem
-- 
2.30.2


^ permalink raw reply	[flat|nested] 6+ messages in thread
[parent not found: <44F26D75-426C-45A8-A405-70A20BEBA807@gmail.com>]
[parent not found: <29B9BB98-2629-4A85-B8FA-BB65BA6D0642@gmail.com>]
[parent not found: <39BEBD7B-18C4-4CEB-84DD-CDFC5227866A@gmail.com>]

end of thread, other threads:[~2022-09-20  7:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-25  0:31 [PATCH] crontab: add periodic cleanup the collectd RRD (graphs) Jon Murphy
2022-08-25 10:24 ` Bernhard Bitsch
2022-08-25 10:48 ` Michael Tremer
     [not found] <44F26D75-426C-45A8-A405-70A20BEBA807@gmail.com>
2022-08-25 15:44 ` Michael Tremer
     [not found] <29B9BB98-2629-4A85-B8FA-BB65BA6D0642@gmail.com>
2022-08-25 16:32 ` Michael Tremer
     [not found] <39BEBD7B-18C4-4CEB-84DD-CDFC5227866A@gmail.com>
2022-09-20  7:58 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox