Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
check_multiaddr.php
Help Support Ethan Galstad's New Project:
A Message From The Founder...
As the founder of Nagios, I'm asking for your help in a cause that's dear to my heart.
I'm launching a new project to help better the world by providing the information, ideas, and inspiration that I believe can improve the lives of people everywhere.
I know you're busy managing networks, but I would appreciate it if you would consider liking my Facebook page and showing your support for the content and messages I produce by sharing them with your friends and family.
You can learn more about my project by visiting ethangalstad.me/nagios. Thank you for your time. I wish you all the best in your endeavors, whatever they may be.
- Ethan
You just place this file in front of the commands no need to change the command itself. E.g:
define command{
command_name check-http
command_line $USER1$/check_http %HOSTADDRESS%
}
will become:
define command{
command_name check-http
command_line $USER1$/check_multiaddr.php $USER1$/check_http %HOSTADDRESS%
}
Now you can specify multiple IP addresses in the host configs, comma-separated.
Arguments:
check_multiaddr.php [--behaviour]
By default it will use the ANY behaviour. This means that as long as one check is successful the end result will be OK. If you specify all then all the checks must be successful before the check returns OK.
define command{
command_name check-http
command_line $USER1$/check_http %HOSTADDRESS%
}
will become:
define command{
command_name check-http
command_line $USER1$/check_multiaddr.php $USER1$/check_http %HOSTADDRESS%
}
Now you can specify multiple IP addresses in the host configs, comma-separated.
Arguments:
check_multiaddr.php [--behaviour
By default it will use the ANY behaviour. This means that as long as one check is successful the end result will be OK. If you specify all then all the checks must be successful before the check returns OK.
Reviews (0)
Be the first to review this listing!