2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

plugin relayd: fix category spelling

This commit is contained in:
Lars Kruse 2018-03-28 12:57:41 +02:00
parent 6c59a8971b
commit 63748dc665

View File

@ -82,7 +82,7 @@ if ($cmd eq 'config') {
print("graph_title Relayd host availability\n"); print("graph_title Relayd host availability\n");
print("graph_args --upper-limit 100\n"); print("graph_args --upper-limit 100\n");
print("graph_vlabel % availability\n"); print("graph_vlabel % availability\n");
print("graph_category Load balancer\n"); print("graph_category loadbalancer\n");
print("graph_info Ratio of time when this host was up. This is provided by relayd itself (not averaged by this plugin)\n"); print("graph_info Ratio of time when this host was up. This is provided by relayd itself (not averaged by this plugin)\n");
for my $host (@hosts) { for my $host (@hosts) {
my $clean = clean_host($host); my $clean = clean_host($host);
@ -92,7 +92,7 @@ if ($cmd eq 'config') {
print("graph_title Relayd host incidents\n"); print("graph_title Relayd host incidents\n");
print("graph_args --lower-limit 0\n"); print("graph_args --lower-limit 0\n");
print("graph_vlabel down incidents\n"); print("graph_vlabel down incidents\n");
print("graph_category Load balancer\n"); print("graph_category loadbalancer\n");
print("graph_info Number of times this host went down\n"); print("graph_info Number of times this host went down\n");
for my $host (@hosts) { for my $host (@hosts) {
my $clean = clean_host($host); my $clean = clean_host($host);