Help making an icinga Dashboard

Hi,
I have a dashboard where I see all windows servers disk alerts. This is the filter I use:

AND
AND
Service State = 2
Service Unhandled =1
AND
Service (case insensitive) = “disk”
Service Display Name (case insensitive) = “disk”
Host OS = “Windows”

This gives me a list of disk alerts in windows devices, but also appear servers with this plugin output:
CHECK_NRPE STATE CRITICAL: Socket timeout after 10 seconds.

Do you know what can I add to the filter to get rid of those latest alerts? I just want to see servers with low space available on disk, not socket time out ones.

Thanks

Hi @fjgaspar

does

service_output != *socket timeout*

work?

No, it didn’t work but it has to be something similar I guess

The Service Output is case sensitive, it needs to be:

service_output != *Socket timeout*

…with a capital S.