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

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

@ -185,7 +185,7 @@ if ($ARGV[0] and $ARGV[0] eq "config") {
print("host_name $host\n");
printf("graph_title %s\n", $graphs->{$mode}->{'title'});
# print "graph_args --base 1000\n";
print("graph_category envsensor\n");
print("graph_category sensors\n");
printf("graph_vlabel %s\n", $graphs->{$mode}->{'unit'});
unless (defined($graphs->{$mode}->{'thatype'})) {
print("graph_info For contact sensors, the values mean: 1 = open, 2 = closed, 3 = armed, 4 = triggered\n");