Page 1 of 1

Monitor Third Party Software from Windows

Posted: Thu Jul 25, 2013 11:29 pm
by piktoy
Hi,

Is there any solutions you can provide from my querries.

I need to monitor the status of the third party software service that are currently installed from windows machine.

Scenario:
Windows installed with 3rd party software, and inside the software there is a application service that we need to check whether this particular status change from active to inactive( vice versa) so it will reflect on our monitoring screen when it turns inactive.

Is this possible, i know the nsclient and windows snmp monitoring can check all the windows services, not sure if another application is concerned.

Please revert thanks.

Re: Monitor Third Party Software from Windows

Posted: Fri Jul 26, 2013 9:52 am
by sreinhardt
Yes either of the mentioned above would be able to monitor if a process is running, WMI would also be an option. Are you just looking to see if the application is running, query the application somehow, or what exactly are you looking to verify and ideally how would you check this?

Re: Monitor Third Party Software from Windows

Posted: Sun Jul 28, 2013 8:38 pm
by piktoy
sreinhardt wrote:Yes either of the mentioned above would be able to monitor if a process is running, WMI would also be an option. Are you just looking to see if the application is running, query the application somehow, or what exactly are you looking to verify and ideally how would you check this?

the third party application has a services like in windows, that will show the status whether active or inactive. require to monitor is the service of the applications, if the status change to active or inactive? possible? how the WMI works and where can i start is there any guides?

Re: Monitor Third Party Software from Windows

Posted: Mon Jul 29, 2013 9:43 am
by lmiltchev
Here is our documentation on monitoring Windows via WMI:

http://assets.nagios.com/downloads/nagi ... ng_WMI.pdf

You can view the plugin's usage by typing in the command line:

Code: Select all

/usr/local/nagios/libexec/check_wmi_plus.pl -h
A sample check from the command line would be:

Code: Select all

/usr/local/nagios/libexec/check_wmi_plus.pl -H <ip address> -u '<username>' -p '<password>' -m checkservice -s Commandline -a 'Spooler.exe'
OK - Found 0 Services(s), 0 OK and 0 with problems (0 excluded). |'Total Service Count'=0; 'Service Count OK State'=0; 'Service Count Problem State'=0; 'Excluded Service Count'=0;
Hope this helps.