2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00
contrib-munin/plugins/ftp/proftpd

19 lines
502 B
Plaintext
Raw Normal View History

#!/bin/bash
2009-08-05 17:38:01 +02:00
if [[ $1 == 'config' ]]; then
echo "graph_args --base 1000 -l 0"
echo "graph_title Serveur FTP"
echo "graph_category Ftp"
echo "graph_vlabel Stats Proftpd"
echo "succes.label Login succes"
echo "succes.draw AREA"
echo "failed.label Login failed"
echo "failed.draw AREA"
fi
2009-08-05 17:38:01 +02:00
succes=`cat /var/log/proftpd/proftpd.log | grep -c "successful"`
failed=`cat /var/log/proftpd/proftpd.log | grep -c "Login failed"`
echo "succes.value $succes"
echo "failed.value $failed"