scripts/munin/wiki_pages
salles 8fcb6b5834 Correction utilisateurs-> pages
darcs-hash:20060421073714-72cb0-9adbd89c354fc41e7ac72e006fe654d1ab31d731.gz
2006-04-21 09:37:14 +02:00

14 lines
341 B
Bash
Executable file

#!/bin/sh
if [ "$1" = "config" ]; then
echo 'host_name 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`