scripts/munin/wiki_pages
salles b4b5fdf3cb On modifie le host_name et on ajoute la catgorie wiki
darcs-hash:20060502133150-72cb0-0b96a41d2e7b4d8663dadf06552592031299f708.gz
2006-05-02 15:31:50 +02:00

15 lines
368 B
Bash
Executable file

#!/bin/sh
if [ "$1" = "config" ]; then
echo 'host_name web'
echo 'graph_category wiki'
echo 'graph_title Nombres de pages'
echo 'graph_args --base 1000 --lower-limit 0'
echo 'graph_vlabel nombre de pages'
echo 'total.label Total'
echo 'total.draw AREA'
exit 0
fi
echo "total.value" `ls /var/local/wiki/data/pages/ | grep -v MoinEditorBackup | wc -l`