Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
Directory
warnox
bywarnox, January 6, 2015
Thanks for writing the script, it's works great with BE 2014 but needs a slight modification for Nagios to display the output correctly.
The line,
txt = "Error on backup job | " & txt
should not contain a pipe '|', because Nagios interprets everything after the pipe as performance data, https://nagios-plugins.org/doc/guidelines.html#AEN200.
Changing this to any other character, like a hyphen, fixed the problem.
txt = "Error on backup job - " & txt
The line,
txt = "Error on backup job | " & txt
should not contain a pipe '|', because Nagios interprets everything after the pipe as performance data, https://nagios-plugins.org/doc/guidelines.html#AEN200.
Changing this to any other character, like a hyphen, fixed the problem.
txt = "Error on backup job - " & txt