Page 1 of 1

Check_iis8_app_pool_state

Posted: Thu Jun 09, 2016 8:08 am
by mdsupersonic
Hi Nagios team,
I want to use the component in nagios exchange in this link -> https://exchange.nagios.org/directory/P ... te/details
Unfortunately there is not any explanation about using in Nagios XI ,there is only explanation for windows.My company is using this component right now but when I click for downloading it says page not found and also in the main website there is no explanation of how using in Nagios. If anybody using this please help me.

Cheers

Majid

Re: Check_iis8_app_pool_state

Posted: Thu Jun 09, 2016 10:42 am
by rkennedy
Please use this page - https://raw.githubusercontent.com/ester ... _state.ps1

For instructions on what to add to your NSClient++ information, look at this page - https://github.com/esterniclos/nagios_iis

Code: Select all

[/settings/external scripts/scripts]
     # Requires allow arguments=true
      check_iis8_app_pool_state = powershell.exe scripts\check_iis8_app_pool_state.ps1 $ARG1$

      check_default_app_pool = powershell.exe scripts\check_iis8_app_pool_state.ps1 DefaultAppPool

      # Requires allow arguments=true
      check_iis8_website = powershell.exe scripts\check_iis8_site.ps1 $ARG1$
      check_default_website = powershell.exe scripts\check_iis8_site.ps1 'Default Web Site'


      check_connections = powershell.exe scripts\check_iis8_connections.ps1 localhost 'Default Web Site' 3000 4000
Then, you can call to any of those 5 commands using check_nrpe with the -c parameter.

Re: Check_iis8_app_pool_state

Posted: Thu Jun 09, 2016 12:35 pm
by mdsupersonic
Thanks for your reply.
Very appreciated

Re: Check_iis8_app_pool_state

Posted: Thu Jun 09, 2016 1:08 pm
by rkennedy
No problem - were you able to get it working?