From 387bb863f1ac534178bbcb1c0ba6671d655ec542 Mon Sep 17 00:00:00 2001 From: Olivier Mehani Date: Wed, 5 Jan 2022 22:07:04 +1100 Subject: [PATCH] snmp__mikrotik: unify titles and category Signed-off-by: Olivier Mehani --- plugins/router/snmp__mikrotik | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/router/snmp__mikrotik b/plugins/router/snmp__mikrotik index 2cf1880b..b57a23a1 100755 --- a/plugins/router/snmp__mikrotik +++ b/plugins/router/snmp__mikrotik @@ -88,8 +88,8 @@ if ($ARGV[0] and $ARGV[0] eq "config") { if (defined $response) { print "multigraph flash\n"; print "graph_args --base 1024 -l 0 --vertical-label Bytes --upper-limit " . ($response->{$sysFlashTotalOID} * 1024) . "\n"; - print "graph_title Flash disk usage\n"; - print "graph_category system\n"; + print "graph_title Disk usage\n"; + print "graph_category disk\n"; print "graph_info This graph shows the router's flash disk usage.\n"; print "graph_order Total Used\n"; print "graph_vlabel bytes\n"; @@ -103,7 +103,7 @@ if ($ARGV[0] and $ARGV[0] eq "config") { if (defined $response) { print "multigraph ram\n"; print "graph_args --base 1024 -l 0 --vertical-label Bytes --upper-limit " . ($response->{$sysRAMTotalOID} * 1024) . "\n"; - print "graph_title RAM usage\n"; + print "graph_title Memory usage\n"; print "graph_category system\n"; print "graph_info This graph shows the router's memory usage.\n"; print "graph_order Total Used\n";