Report About Clients Without Notifications

Hello,

I am currently creating notification rules for services and hosts. Is there a report available that shows which clients do not have notifications configured

I like that idea, here is something that works with icingadb:

https://icinga.example.com/icingaweb2/icingadb/hosts?notification.name!~%2A
https://icinga.example.com/icingaweb2/icingadb/services?notification.name!~%2A

The filter !~* is equal to is null

the first shows you hosts that have no notification apply rule applied

the second shows you services that have no notification apply rule applied

if you also want to catch notifications that have been disabled on the host you can append

|host.notifications_enabled=n
|service.notifications_enabled=n

like this:

https://icinga.example.com/icingaweb2/icingadb/hosts?notification.name!~%2A|host.notifications_enabled=n
https://icinga.example.com/icingaweb2/icingadb/services?notification.name!~%2A|service.notifications_enabled=n

Isn’t that part of the default dashboard muted?

https://icinga.example.com/icingaweb2/dashboard?pane=Muted

muted is just “managed” in any way (checks disabled, notification disabled, acknowledged) but does not show “notification apply rule-less” objects