Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
plugin relayd: fix category spelling
  • Loading branch information
sumpfralle committed Mar 29, 2018
1 parent 6c59a89 commit 63748dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/relayd/relayd
Expand Up @@ -82,7 +82,7 @@ if ($cmd eq 'config') {
print("graph_title Relayd host availability\n");
print("graph_args --upper-limit 100\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");
for my $host (@hosts) {
my $clean = clean_host($host);
Expand All @@ -92,7 +92,7 @@ if ($cmd eq 'config') {
print("graph_title Relayd host incidents\n");
print("graph_args --lower-limit 0\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");
for my $host (@hosts) {
my $clean = clean_host($host);
Expand Down

0 comments on commit 63748dc

Please sign in to comment.