Build precise queries to find exactly what you need
Press ESC to close
Nagios World Conference 2026: Sept. 14-17 in St. Paul, MN | Learn More
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