mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-22 02:51:03 +00:00
Initial version
This commit is contained in:
parent
ff6cea900d
commit
23b3410b20
1 changed files with 31 additions and 0 deletions
31
plugins/other/clamav
Executable file
31
plugins/other/clamav
Executable file
|
@ -0,0 +1,31 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#%# family=manual
|
||||||
|
#%# capabilities=autoconf
|
||||||
|
log=/var/log/clamav/clamd.log
|
||||||
|
|
||||||
|
if [ "$1" = "autoconf" ]; then
|
||||||
|
if [ -r $log ]; then
|
||||||
|
echo "yes"
|
||||||
|
else
|
||||||
|
echo "no (cannot read $log)"
|
||||||
|
fi
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$1" = "config" ]; then
|
||||||
|
|
||||||
|
cat <<EOT
|
||||||
|
graph_title ClamAV stats
|
||||||
|
graph_args --base 1000 -l 0
|
||||||
|
graph_vlabel virus/day
|
||||||
|
graph_category Mail
|
||||||
|
virus.label virus
|
||||||
|
virus.type DERIVE
|
||||||
|
virus.min 0
|
||||||
|
virus.draw AREA
|
||||||
|
virus.cdef virus,86400,*
|
||||||
|
EOT
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -n "virus.value " && fgrep -c FOUND $log
|
Loading…
Add table
Add a link
Reference in a new issue