Suppose we have a service definition in nagios as:
define service{
host_name some host
service_description xxx
max_check_attempts 4
event_handler restart-XXX
...
}
Now my question is can we add 2 event_handlers say event_handler1
and event_handler2
this should look something like:
event_handler1 restart-XXX
event_handler2 restart-YYY
...
}
Is this possible?
You can solve this two different ways:
You can register a global event handler, and then a per service/host event handler.
In your command definition: define command{ command_name global_event_handler command_line /path/to/script $ARGUMENTS$ }
Then, in main nagios configuration:
And in your host definition:
You can write a script that will execute both, and set that as the event handler.
In your command definition:
In your host definition:
Then, in /path/to/script:
Hope this helps!