See all hosts/services with active checks disabled

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
hbouma
Posts: 483
Joined: Tue Feb 27, 2018 9:31 am

See all hosts/services with active checks disabled

Post by hbouma »

Is there a way to check from the command line for all hosts/services disabled? For instance, if someone were to turn off active checks from the Advanced option in the gui, can I pull a list of those checks?

This would be for Nagios XI 5.6.1 on Red Hat 7.6 64bit VM's.
2019-05-21 10_49_20-Nagios XI.png
You do not have the required permissions to view the files attached to this post.
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: See all hosts/services with active checks disabled

Post by scottwilkerson »

Let's see, I know you can see them in the GUI here
Services

Code: Select all

/nagiosxi/includes/components/xicore/status.php?show=services&serviceattr=16
Hosts

Code: Select all

/nagiosxi/includes/components/xicore/status.php?show=hosts&hostattr=16
From the CLI you would need to grab them from the API
Services

Code: Select all

http://YOUR_HOST/nagiosxi/api/v1/objects/servicestatus?apikey=API_KEY&pretty=1&active_checks_enabled=0
Hosts

Code: Select all

http://YOUR_HOST/nagiosxi/api/v1/objects/hoststatus?apikey=API_KEY&pretty=1&active_checks_enabled=0
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
hbouma
Posts: 483
Joined: Tue Feb 27, 2018 9:31 am

Re: See all hosts/services with active checks disabled

Post by hbouma »

Thank you, this resolved my issue. please feel free to close the post.
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: See all hosts/services with active checks disabled

Post by scottwilkerson »

hbouma wrote:Thank you, this resolved my issue. please feel free to close the post.
Great!

Locking
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
Locked