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_count

61 lines
1.3 KiB
Plaintext
Raw Normal View History

2007-05-25 19:53:02 +02:00
#!/bin/bash
#
# Plugin to monitor FTP files.
# based on previous work by jintxo
#
# Parameters understood:
#
# config (required)
# autoconf (optional)
#
# Magic markers (optional - used by munin-config and installation
# scripts):
#
#%# family=auto
#%# capabilities=autoconf
mktempfile () {
mktemp -t "$1"
}
2007-05-25 19:53:02 +02:00
LOGFILE=${logfile:-/var/log/proftpd/xferlog}
LOGTAIL=${logtail:-$(which logtail)}
STATEFILE=$MUNIN_PLUGSTATE/xferlog-count.offset
2007-05-25 19:53:02 +02:00
if [ "$1" = "autoconf" ]; then
if [ -f "$LOGFILE" ] && [ -n "$LOGTAIL" ] && [ -x "$LOGTAIL" ] ; then
echo yes
else
echo "no (missing logfile or 'logtail' executable)"
fi
exit 0
2007-05-25 19:53:02 +02:00
fi
if [ "$1" = "config" ]; then
echo 'graph_title FTP Server Transfers'
echo 'graph_args --base 1000 -l 0'
echo 'graph_vlabel FTP Server Transfers'
echo 'graph_category network'
echo 'ftp_get.label Files GET'
echo 'ftp_put.label Files PUT'
exit 0
2007-05-25 19:53:02 +02:00
fi
ftp_get=U
ftp_put=U
TEMP_FILE=$(mktempfile munin-xferlog-count.XXXXXX)
2007-05-25 19:53:02 +02:00
if [ -n "$TEMP_FILE" ] && [ -f "$TEMP_FILE" ]; then
"$LOGTAIL" "$LOGFILE" "$STATEFILE" | grep "[[:space:]][oi][[:space:]]" >"$TEMP_FILE"
ftp_get=$(grep "[[:space:]]o[[:space:]]" "$TEMP_FILE" | wc -l)
ftp_put=$(grep "[[:space:]]i[[:space:]]" "$TEMP_FILE" | wc -l)
2007-05-25 19:53:02 +02:00
/bin/rm -f "$TEMP_FILE"
2007-05-25 19:53:02 +02:00
fi
echo "ftp_get.value $ftp_get"
echo "ftp_put.value $ftp_put"