mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-06-08 16:26:23 -04:00
Counter32 tag parsing added
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@250 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
parent
3a04e399fd
commit
1c359fe16f
1 changed files with 2 additions and 0 deletions
|
|
@ -297,6 +297,8 @@ main (int argc, char **argv)
|
|||
show = strstr (response, "Gauge: ") + 7;
|
||||
else if (strstr (response, "Gauge32: "))
|
||||
show = strstr (response, "Gauge32: ") + 9;
|
||||
else if (strstr (response, "Counter32: "))
|
||||
show = strstr (response, "Counter32: ") + 11;
|
||||
else if (strstr (response, "INTEGER: "))
|
||||
show = strstr (response, "INTEGER: ") + 9;
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in a new issue