
mal gres par munin darcs-hash:20070925060933-72cb0-3fff0b48f046a27a5cb4e2beb1248b2b59153d04.gz
15 lines
389 B
Bash
Executable file
15 lines
389 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$1" = "config" ]; then
|
|
|
|
echo 'host_name web.rouge'
|
|
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" `find /var/local/wiki/data/pages/ -mindepth 2 -maxdepth 2 -name "current" | wc -l`
|