1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-22 14:16:00 +00:00

change graph draw to area mode

This commit is contained in:
ak4t0sh 2014-09-15 23:17:03 +02:00
parent ac1f67b28e
commit 24e415fec0

View file

@ -49,8 +49,11 @@ if (count($argv) === 2 && $argv[1] === 'config') {
echo "users_suspended.label suspended\n";
echo "users_deleted.label deleted\n";
echo "users_active.min 0\n";
echo "users_active.draw AREA\n";
echo "users_suspended.min 0\n";
echo "users_suspended.draw AREA\n";
echo "users_deleted.min 0\n";
echo "users_deleted.draw AREA\n";
exit(0);
}