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

Category Tree: Reduce number of categories

Don't use variable to set category, plugin gallery build script needs the pure string..
This commit is contained in:
dipohl 2017-02-21 00:41:40 +01:00
parent 9841894599
commit 8af93fce06
17 changed files with 19 additions and 21 deletions

View file

@ -54,7 +54,6 @@ mysqlbin=$(which mysql)
default_errorvalue=30
default_title="Results from MySQL queries"
default_category="mysql"
default_vlabel="value / sec"
default_info="This graph shows results of one or more SQL queries."
default_args="--base 1000 -l 0"
@ -77,7 +76,6 @@ fi
[ -n "${errorvalue}" ] || errorvalue=${default_errorvalue}
[ -n "${title}" ] || title="${default_title}"
[ -n "${category}" ] || category="${default_category}"
[ -n "${vlabel}" ] || vlabel="${default_vlabel}"
[ -n "${info}" ] || info="${default_info}"
[ -n "${args}" ] || args="${default_args}"
@ -89,7 +87,7 @@ graph_title ${title}
graph_args ${args}
graph_scale ${scale}
graph_vlabel ${vlabel}
graph_category ${category}
graph_category db
graph_info ${info}
EOH1
[ -n "${period}" ] && echo "graph_period ${period}"