Nagios XI with Incident Manager
Nagios XI with Incident Manager
Hello,
I have a problem with the combination of my Nagios XI ( Version 5.2.9 ) and the Incident Manager ( Version 2.0.0 ).
Both of the Servers i've installed via the VMware Image running on VMware ESXi 5.1.
The Problem is the Incident Manager-Callback stops working after a while, when I delete the IM-Integration Plugin (and reinstall it) including the Callback on the Nagios Incident Manager and re-create the Configuration it starts working fine for a while, at some point the Callback Stops working and says "FAILURE" on the Incident Manager. The Version of the IM-Integration Plugin is 2.2.3.
Does anyone else have/had that problem ? What can I do to fix that?
By the way I have a running Support and Maintenance Plan - what do I have to do to post in the customer support forum?
I'll attach screens of the configuration of the plugin and the incident manager.
I have a problem with the combination of my Nagios XI ( Version 5.2.9 ) and the Incident Manager ( Version 2.0.0 ).
Both of the Servers i've installed via the VMware Image running on VMware ESXi 5.1.
The Problem is the Incident Manager-Callback stops working after a while, when I delete the IM-Integration Plugin (and reinstall it) including the Callback on the Nagios Incident Manager and re-create the Configuration it starts working fine for a while, at some point the Callback Stops working and says "FAILURE" on the Incident Manager. The Version of the IM-Integration Plugin is 2.2.3.
Does anyone else have/had that problem ? What can I do to fix that?
By the way I have a running Support and Maintenance Plan - what do I have to do to post in the customer support forum?
I'll attach screens of the configuration of the plugin and the incident manager.
You do not have the required permissions to view the files attached to this post.
Nagios XI with Incident Manager
I have a problem with our nagios xi server and the incident manager.
The problem is: When I create the “connection” with the plugin nagios im integration it works fine but after a while (happened a few times now) the callback says “last result: FAILURE (0)” and it stops working. When I delete the Callback, reinstall + reconfigure the plugin it works again… but just for a few days then it stops working again.
Nagios XI 5.2.9
Nagios Incident Manager 2.0.0
Nagios IM Integration 2.2.3
Nagios XI and Nagios Incident Manager running on ESXi 5.1 (installed with the vm-image). The names “nagios” and “incident” are dns-alias on our domain controllers, the servers are not joined the domain and/or connected via ldap.
Does anyone have an idea ?
I have a running support and maintaince plan - what do I have to do to post in the customer forum? Thank you.
The problem is: When I create the “connection” with the plugin nagios im integration it works fine but after a while (happened a few times now) the callback says “last result: FAILURE (0)” and it stops working. When I delete the Callback, reinstall + reconfigure the plugin it works again… but just for a few days then it stops working again.
Nagios XI 5.2.9
Nagios Incident Manager 2.0.0
Nagios IM Integration 2.2.3
Nagios XI and Nagios Incident Manager running on ESXi 5.1 (installed with the vm-image). The names “nagios” and “incident” are dns-alias on our domain controllers, the servers are not joined the domain and/or connected via ldap.
Does anyone have an idea ?
I have a running support and maintaince plan - what do I have to do to post in the customer forum? Thank you.
Re: Nagios XI with Incident Manager
You will need to have the primary contact on the account email [email protected] with your email address and forum username and ask them to allow access to the customer forums.
Do you see anything in your XI server's /var/log/httpd/error_log?
Is incident resolvable (ping incident) from the XI server? Is nagios (ping nagios) resolvable from the Incident Manager server?
You might try putting those in your /etc/hosts file on each server to see if it's DNS issues.
Thank you
Do you see anything in your XI server's /var/log/httpd/error_log?
Is incident resolvable (ping incident) from the XI server? Is nagios (ping nagios) resolvable from the Incident Manager server?
You might try putting those in your /etc/hosts file on each server to see if it's DNS issues.
Thank you
Re: Nagios XI with Incident Manager
Thank you for your reply!
From the XI server I was able to ping the "incident" alias, but for some reason the incident Managers server was not able to ping the "nagios" alias.
Ive added the servers to the hosts file, ill see if that helps. If not ill check the log files.
From the XI server I was able to ping the "incident" alias, but for some reason the incident Managers server was not able to ping the "nagios" alias.
Ive added the servers to the hosts file, ill see if that helps. If not ill check the log files.
Re: Nagios XI with Incident Manager
Great, that might be the reason, let us know how it goes.
Re: Nagios XI with Incident Manager
hello,
this was not the reason, its still not working properly.
for example:
I shut down two servers, one of them creates 9 incident (one for each service -> why not only the same as the nagios send in the email/sms [host is down]?).
The other servers does not create an incident at all.
All of the hosts are created/configured the same way, we have ONE template for hosts and ONE for service, all checks are managed via the template for services, all hosts use the template for hosts. The services (for example check vmtools, check drive c, ...) are in groups, when i'll create new hosts i just have to put them in the required host groups and the checks will be added through the group.
Is there a way to just add an event handler to create an incident? I want exactly everything that is send via email/sms in the incident manager - an event handler would solve all problems - updating incidents will not be required, that will be done from the it department.
Thanks for your help!
this was not the reason, its still not working properly.
for example:
I shut down two servers, one of them creates 9 incident (one for each service -> why not only the same as the nagios send in the email/sms [host is down]?).
The other servers does not create an incident at all.
All of the hosts are created/configured the same way, we have ONE template for hosts and ONE for service, all checks are managed via the template for services, all hosts use the template for hosts. The services (for example check vmtools, check drive c, ...) are in groups, when i'll create new hosts i just have to put them in the required host groups and the checks will be added through the group.
Is there a way to just add an event handler to create an incident? I want exactly everything that is send via email/sms in the incident manager - an event handler would solve all problems - updating incidents will not be required, that will be done from the it department.
Thanks for your help!
Re: Nagios XI with Incident Manager
You could certainly add an event handler that uses IM's API to create incidents. In fact, that's exactly what you need to do. Look at the "Help" page on your IM install and it will provide you with all of the API information you need.
In fact, I'll even provide you with a script to add incidents. Change API keys and IPs as required:
In fact, I'll even provide you with a script to add incidents. Change API keys and IPs as required:
Code: Select all
#!/bin/sh
api_key="thiswillneedtobechanged"
title="Test ticket"
summary="This is a short description of the incident"
type="tickettype"
priority=""
status=""
users=""
teams="ticketteam"
IP="XX.XX.XX.XX" # IP of IM server
print_help() {
echo " -t) title"
echo " -s) summary"
echo " -y) type"
echo " -p) priority"
echo " -a) status"
echo " -u) users"
echo " -m) teams"
exit
}
while [ -n "$1" ]; do
case "$1" in
-h) print_help; shift 1;;
-t) title="$2"; shift 2;;
-s) summary="$2"; shift 2;;
-y) type="$2"; shift 2;;
-p) priority="$2"; shift 2;;
-a) status="$2"; shift 2;;
-u) users="$2"; shift 2;;
-m) teams="$2"; shift 2;;
*) shift 1;;
esac
done
data="api_key=${api_key}&title=${title}&summary=${summary}&type=${type}&priority=${priority}&status=${status}&users=${users}&teams=${teams}"
output=`curl --data "$data" http://${IP}/nagiosim/index.php/api/incidents/add`
id=`echo "$output" | grep "incident id" | awk -F\" '{print $2}'`
echo "ID=$id"
Eric Loyd • http://everwatch.global • 844.240.EVER • @EricLoyd
I'm a Nagios Fanatic! • Join our public Nagios Discord Server!
Re: Nagios XI with Incident Manager
Take a look at @eloyd's solution, and in the meantime can you post the last 40 or so lines of /var/log/httpd/error_log when this occurs? I wonder if there is something in there that can point us in the right direction.
Former Nagios employee
Re: Nagios XI with Incident Manager
thank you eloyd! I modified the script as i needed it, now it works fine for me.
Here's the log from when I tested before integrating the script.
by the way, if anyone else is looking for the same here my scripts:
command for hosts
command for services
those commands are used for an user that just receives down/unknown states for hosts and warning, unknown and critical for services.
script under /usr/local/nagios/libexec
Here's the log from when I tested before integrating the script.
Code: Select all
[Wed Jul 13 07:06:29 2016] [error] [client 10.10.100.39] PHP Notice: Undefined index: flash_msg in /usr/local/nagiosxi/html/login.php on line 79, referer: http://nagios/nagiosxi/login.php?redirect=/nagiosxi/index.php%3f&noauth=1
[Wed Jul 13 08:28:59 2016] [error] [client 10.10.100.17] PHP Notice: Undefined index: flash_msg in /usr/local/nagiosxi/html/login.php on line 79, referer: http://nagios/
[Wed Jul 13 08:29:02 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/login.php?redirect=/nagiosxi/index.php%3f&noauth=1
[Wed Jul 13 08:29:02 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/index.php
[Wed Jul 13 08:31:36 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/index.php
[Wed Jul 13 08:31:37 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 08:31:41 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi//includes/page-default-splash.php
[Wed Jul 13 08:32:17 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 08:37:53 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 08:37:53 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 10:26:31 2016] [error] [client 10.10.100.17] PHP Notice: Undefined index: flash_msg in /usr/local/nagiosxi/html/login.php on line 79, referer: http://nagios/
[Wed Jul 13 10:26:37 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/login.php?redirect=/nagiosxi/index.php%3f&noauth=1
[Wed Jul 13 10:26:37 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/index.php
[Wed Jul 13 10:26:42 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/index.php
[Wed Jul 13 10:26:43 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/index.php
[Wed Jul 13 13:18:52 2016] [error] [client 10.10.100.17] PHP Notice: Undefined index: flash_msg in /usr/local/nagiosxi/html/login.php on line 79, referer: http://nagios/
[Wed Jul 13 13:18:54 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/login.php?redirect=/nagiosxi/index.php%3f&noauth=1
[Wed Jul 13 13:18:55 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/index.php
[Wed Jul 13 13:21:15 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/index.php
[Wed Jul 13 13:21:25 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 13:21:48 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/index.php
[Wed Jul 13 13:21:55 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 13:21:59 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/index.php
[Wed Jul 13 13:28:43 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/index.php
[Wed Jul 13 13:28:43 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 13:28:46 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 13:28:49 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/components.php
[Wed Jul 13 13:28:56 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/components.php?checkupdates=true
[Wed Jul 13 13:29:40 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/
[Wed Jul 13 13:29:40 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:29:41 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:29:44 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 13:29:55 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 13:30:22 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:30:22 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/config/
[Wed Jul 13 13:30:24 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/config/
[Wed Jul 13 13:30:24 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 13:30:26 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 13:30:29 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/?cmd=view&type=host
[Wed Jul 13 13:30:32 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/index.php
[Wed Jul 13 13:30:45 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 13:30:47 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/?cmd=view&type=hosttemplate
[Wed Jul 13 13:31:16 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 13:31:17 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:31:20 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi//includes/page-default-splash.php
[Wed Jul 13 13:33:41 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=15&servicestatustypes=28&serviceattr=10
[Wed Jul 13 13:33:46 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:33:48 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 13:34:01 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 13:34:21 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:34:23 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 13:34:28 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 13:34:36 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:34:39 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 13:34:43 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 13:35:02 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:35:04 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 13:35:08 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 13:35:16 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:35:18 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 13:35:22 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 13:35:27 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:35:29 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 13:35:34 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 13:35:58 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:36:17 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 13:46:22 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/components.php?config=nagiosim
[Wed Jul 13 13:49:41 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:52:47 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:52:48 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:52:49 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:58:40 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:58:43 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 13:59:11 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 13:59:12 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 14:01:26 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 14:01:30 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 14:03:38 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 14:03:40 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 14:03:46 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 14:06:53 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 14:08:21 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 14:22:13 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 14:22:34 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 14:22:39 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 14:22:40 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 14:22:41 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 14:22:42 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 14:22:44 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 14:22:45 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 14:23:05 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 14:24:56 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 14:24:59 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?&show=services&hoststatustypes=0&servicestatustypes=28&serviceattr=10
[Wed Jul 13 14:27:59 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 14:28:02 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 14:40:29 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 14:40:29 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 14:40:32 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 14:40:41 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/components.php
[Wed Jul 13 14:41:00 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 14:41:08 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 14:41:08 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 14:41:09 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 14:41:15 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 14:42:05 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 14:42:05 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 14:42:08 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 14:42:14 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/components.php
[Wed Jul 13 14:42:58 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/components.php?config=nagiosim
[Wed Jul 13 14:45:58 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 14:46:11 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 14:46:12 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 14:46:23 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 14:46:30 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 14:46:30 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:03:17 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:03:18 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 15:03:21 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 15:03:35 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/components.php
[Wed Jul 13 15:03:42 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/components.php?config=nagiosim
[Wed Jul 13 15:03:44 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 15:03:44 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:04:00 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:05:38 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:05:38 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:09:34 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/
[Wed Jul 13 15:09:35 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:09:36 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:09:36 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/config/
[Wed Jul 13 15:09:37 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/config/
[Wed Jul 13 15:09:38 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:09:46 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:09:50 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:09:50 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 15:09:56 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 15:09:56 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/config/
[Wed Jul 13 15:09:57 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/config/
[Wed Jul 13 15:09:58 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:10:03 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:10:46 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/?cmd=view&type=command
[Wed Jul 13 15:10:49 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/index.php?cmd=view&type=command&page=2
[Wed Jul 13 15:10:55 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:20:45 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/
[Wed Jul 13 15:20:46 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:20:47 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:20:47 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/config/
[Wed Jul 13 15:20:48 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/config/
[Wed Jul 13 15:20:49 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:20:51 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:20:51 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 15:20:56 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 15:21:00 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 15:21:00 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:21:02 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:21:06 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/?cmd=view&type=contact
[Wed Jul 13 15:23:50 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:23:50 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 15:23:57 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/
[Wed Jul 13 15:23:57 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:23:59 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:24:42 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
[Wed Jul 13 15:26:36 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:26:39 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:26:40 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 15:26:42 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/admin/
[Wed Jul 13 15:26:42 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/config/
[Wed Jul 13 15:26:43 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/config/
[Wed Jul 13 15:26:44 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:27:32 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:27:33 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:27:37 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:27:38 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:30:55 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/ccm/xi-index.php
[Wed Jul 13 15:30:55 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:31:03 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/
[Wed Jul 13 15:31:04 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:31:06 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/
[Wed Jul 13 15:31:09 2016] [error] [client 10.10.100.17] PHP Notice: Undefined offset: 1000 in /usr/local/nagiosxi/html/includes/components/helpsystem/helpsystem.inc.php on line 252, referer: http://nagios/nagiosxi/includes/components/xicore/status.php?show=services
by the way, if anyone else is looking for the same here my scripts:
command for hosts
Code: Select all
$USER1$/create_incident.sh "$HOSTNAME$ : $HOSTSTATE$" "Time: $LONGDATETIME$ Host: $HOSTNAME$ Status: $HOSTSTATE$ Output: $HOSTOUTPUT$"Code: Select all
$USER1$/create_incident.sh "$HOSTNAME$ : Service $SERVICEDESC$ is $SERVICESTATE$" "Time: $LONGDATETIME$ Host: $HOSTNAME$ Status: $HOSTSTATE$ Service-Status: $SERVICEOUTPUT$"script under /usr/local/nagios/libexec
Code: Select all
#!/bin/sh
api_key="XXXXXXXXXXXXXXXXXXX" # API KEY FROM IM USER
title="$1"
summary="$2"
type="nagios"
priority=""
status=""
users=""
teams=""
IP="x.x.x.x" # IP of IM server
print_help() {
echo " -t) title"
echo " -s) summary"
echo " -y) type"
echo " -p) priority"
echo " -a) status"
echo " -u) users"
echo " -m) teams"
exit
}
while [ -n "$1" ]; do
case "$1" in
-h) print_help; shift 1;;
-t) title="$2"; shift 2;;
-s) summary="$2"; shift 2;;
-y) type="$2"; shift 2;;
-p) priority="$2"; shift 2;;
-a) status="$2"; shift 2;;
-u) users="$2"; shift 2;;
-m) teams="$2"; shift 2;;
*) shift 1;;
esac
done
data="api_key=${api_key}&title=${title}&summary=${summary}&type=${type}&priority=${priority}&status=${status}&users=${users}&teams=${teams}"
output=`curl --data "$data" http://${IP}/nagiosim/index.php/api/incidents/add`
id=`echo "$output" | grep "incident id" | awk -F\" '{print $2}'`
echo "ID=$id
Re: Nagios XI with Incident Manager
Glad I could help. Feel free to nominate me for an MVP award with the link in my signature below.
Eric Loyd • http://everwatch.global • 844.240.EVER • @EricLoyd
I'm a Nagios Fanatic! • Join our public Nagios Discord Server!