1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Category Tree: Reduce number of categories

multiple plugins -> "mail" (qsmtpd, zimbra)
ossec -> "security" (ossec)
zeo -> appserver (zope)
This commit is contained in:
dipohl 2017-02-22 23:20:56 +01:00
parent 30685b4c66
commit ed77c82d8a
12 changed files with 14 additions and 14 deletions

View file

@ -21,7 +21,7 @@ if [ "$mode" = "memory" ]; then
if [ "$1" = "config" ]; then
echo "graph_title Total uWSGI Memory"
echo "graph_vlabel Total RAM"
echo "graph_category uWSGI"
echo "graph_category appserver"
echo "graph_args --base 1024"
echo "ram.label Total RAM"
exit 0
@ -42,7 +42,7 @@ elif [ "$mode" = "processes" ]; then
if [ "$1" = "config" ]; then
echo "graph_title uWSGI Processes"
echo "graph_vlabel Processes"
echo "graph_category uWSGI"
echo "graph_category appserver"
echo "processes.label active processes"
else
echo -n "processes.value "
@ -55,7 +55,7 @@ elif [ "$mode" = "average" ]; then
echo 'graph_title uWSGI Average Process Size'
echo 'graph_args --base 1024 -l 0 '
echo 'graph_vlabel Average Process Size'
echo 'graph_category uWSGI'
echo 'graph_category appserver'
echo 'uwsgi_average.label Average Process Size'
echo 'uwsgi_average.draw LINE2'
echo 'uwsgi_average.info The average process size for uWSGI'