
KevinR
Veteran

Sep 20, 2006, 12:01 AM
Views: 7541
|
|
Re: [hendro] need help for nagiosgraph map file (perl script)
|
|
|
I'm confused but.... in this line:
/perfdata:Status.*?MEMORY:.*?total:.(\d+) MB.*? used: (\d+) MB \((\d+)\%\) free: (/d+\) MB.*? / the last ')' is escaped with a '\' : (/d+\) and the /d+ probably should be \d+ change the line to:
/perfdata:Status.*?MEMORY:.*?total:.(\d+) MB.*? used: (\d+) MB \((\d+)\%\) free: (\d+) MB.*? / or:
/perfdata:Status.*?MEMORY:.*?total:\.(\d+) MB.*? used: (\d+) MB \((\d+)\%\) free: (\d+) MB.*? / -------------------------------------------------
(This post was edited by KevinR on Sep 20, 2006, 12:01 AM)
|