uawdijnntqw1x1x1
IP : 216.73.216.74
Hostname : www.vorobey-market.ru
Kernel : Linux www.vorobey-market.ru 3.10.0-514.el7.x86_64 #1 SMP Tue Nov 22 16:42:41 UTC 2016 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
..
/
usr
/
src
/
..
/
share
/
munin
/
plugins
/
qmailscan-simple
/
/
#!/usr/bin/sh # -*- sh -*- # # Plugin to count the daily amount of Virii (qmailscan) # # Contributed by David Obando (david@cryptix.de) - 03.12.2005 # # define the logfiles. when you rotate them at any other time than 00:00 you have to define two logfiles: LOG0=/var/spool/qmailscan/quarantine.log LOG1=/var/spool/qmailscan/quarantine.log.1 if [ "$1" = "autoconf" ]; then echo yes exit 0 fi if [ "$1" = "config" ]; then echo 'graph_title Virus amount' echo 'graph_args --base 1000 -l 0 ' echo 'graph_vlabel Daily Virus Amount' echo 'graph_category Mail' echo 'virus.label Virus' echo 'virus.draw AREA' exit 0 fi printf "virus.value " grep "$(date "+%d %b %Y")" $LOG0 $LOG1 | wc -l
/home/../usr/src/../share/munin/plugins/qmailscan-simple