Display all status messages of service in nagios xi

314 Views Asked by At

How shall I see all the status messages of a service in nagios xi. I send multiple status messages and the latest message is displayed in the dashboard UI. From where shall I retrieve all the previous messages?

1

There are 1 best solutions below

0
On

You need define stalking_options directive in your services/hosts definition. Example:

define service {
  service_description            Users count
  host_name                      myhost1
  use                            service_standard
  check_command                  check_nrpe_custom!-H myhost1 -c check_user
  stalking_options               c,w,o,u
}

More info about stalking_options can be found here.