diff options
author | Sven Nierlein <sven@nierlein.de> | 2021-04-07 15:12:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-07 15:12:38 (GMT) |
commit | de7effdf06bc3808bbe82025bf695538b26599fa (patch) | |
tree | 5102f144154c09b283da0884b4d9a2b98afd811f /plugins | |
parent | 7ac706e894e292f6389df156f954c1eaafa6241b (diff) | |
parent | c85281d25bb4b0fc12a45b2732620f51a10344be (diff) | |
download | monitoring-plugins-de7effdf06bc3808bbe82025bf695538b26599fa.tar.gz |
Merge pull request #1465 from lausser/master
check_snmp: put the "c" (to mark a counter) after the perfdata value
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_snmp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index e8a21a4..afc568b 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c | |||
@@ -576,6 +576,9 @@ main (int argc, char **argv) | |||
576 | len = sizeof(perfstr)-strlen(perfstr)-1; | 576 | len = sizeof(perfstr)-strlen(perfstr)-1; |
577 | strncat(perfstr, show, len>ptr-show ? ptr-show : len); | 577 | strncat(perfstr, show, len>ptr-show ? ptr-show : len); |
578 | 578 | ||
579 | if (type) | ||
580 | strncat(perfstr, type, sizeof(perfstr)-strlen(perfstr)-1); | ||
581 | |||
579 | if (warning_thresholds) { | 582 | if (warning_thresholds) { |
580 | strncat(perfstr, ";", sizeof(perfstr)-strlen(perfstr)-1); | 583 | strncat(perfstr, ";", sizeof(perfstr)-strlen(perfstr)-1); |
581 | strncat(perfstr, warning_thresholds, sizeof(perfstr)-strlen(perfstr)-1); | 584 | strncat(perfstr, warning_thresholds, sizeof(perfstr)-strlen(perfstr)-1); |
@@ -588,8 +591,6 @@ main (int argc, char **argv) | |||
588 | strncat(perfstr, critical_thresholds, sizeof(perfstr)-strlen(perfstr)-1); | 591 | strncat(perfstr, critical_thresholds, sizeof(perfstr)-strlen(perfstr)-1); |
589 | } | 592 | } |
590 | 593 | ||
591 | if (type) | ||
592 | strncat(perfstr, type, sizeof(perfstr)-strlen(perfstr)-1); | ||
593 | strncat(perfstr, " ", sizeof(perfstr)-strlen(perfstr)-1); | 594 | strncat(perfstr, " ", sizeof(perfstr)-strlen(perfstr)-1); |
594 | } | 595 | } |
595 | } | 596 | } |