Page 1 of 1
Nagios to Service Desk integration
Posted: Tue Dec 11, 2012 1:55 am
by lafargeuser
Hi,
I would like to know, what are the ways to integrate Nagios with Any 3rd party service desk tool.
We have our inhouse built service desk tool & we want to integrate this with Nagios.
i have gone thorugh the evernthandlers but acutally not implementated.
So here, i am looking easiest way to do it.
And If with eventhandlers do we need to write kind of script for e.g. if host goes down or service goes down script will execute.
Re: Nagios to Service Desk integration
Posted: Tue Dec 11, 2012 11:32 am
by sreinhardt
It depends on what sort of integration you are looking to perform. If you wish to have nagios monitor your current number of incidents or tickets, or check for certain keywords, you would want to write a plugin to check with your tools and report back to nagios. This could be an active check where nagios is querying the service desk tool, or a passive check where a portion of your tool sends data back to nagios if a certain type of incident is acknowledged.
Otherwise if you are looking to have nagios perform its own checks and alert your service desk tool of an issue, you would be right in using event handlers. There is one catch with that though, anytime an event handler is activated nagios stops processing anything until that is completed. What may be a better option depending on how you would intend to alert the tool, is to have nagios write data to a file and a cron job that checks said file, then sending off that data into your tool. This way the event handler is a very short process and nagios can get back to work, while your cron job handles any lengthy activity that needs to happen otherwise.
Re: Nagios to Service Desk integration
Posted: Wed Jan 02, 2013 6:53 am
by lafargeuser
Can i have sample script, which will be execute after every alert.
I am thinking to use Event Handlers here.
Re: Nagios to Service Desk integration
Posted: Wed Jan 02, 2013 12:26 pm
by yancy
lafargeuser,
In addition to sreinhardt suggestion, we do have a solution that's in Beta used as the glue between Nagios and any ticketing system.
http://labs.nagios.com/2012/09/05/nagio ... blic-beta/
-Yancy