17 lines
434 B
Bash
Executable file
17 lines
434 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Plugin pour compter les comptes jabber
|
|
#
|
|
|
|
if [ "$1" = "config" ]; then
|
|
echo 'host_name jabber'
|
|
echo 'graph_title Utilisateurs jabber'
|
|
echo 'graph_vlabel nb'
|
|
echo 'crans.label Nombre de comptes'
|
|
echo "crans.draw AREA"
|
|
echo 'user.label Utilisateurs connectés'
|
|
exit 0
|
|
fi
|
|
|
|
echo "crans.value `ls /var/lib/jabber/jabber.crans.org | wc -l`"
|
|
echo "user.value `netstat -tn | grep ':522[23] .*ESTABLISHED' | wc -l`"
|