Hi,
I am trying to create an auto-correlation rule in Advanced Alerts (Custom SQL Alert : APM Component), I need to alert on the below condition:
IF (Service/Process 1A on Server 1 is DOWN) AND (Service/Process 1B on Server 2 is DOWN) - Generate an alert.
1. Service/Process running on Windows. Is this achievable ? Is there a way to do this?
2. I have created a 2 Windows Service monitors to check availability of the Service on Windows ( Service 1A and Service 1B)
3. I tried the below condition which returns zero rows in Solarwinds
WHERE
(
(APM_AlertsAndReportsData.ComponentName='Service 1A') AND (APM_AlertsAndReportsData.ComponentName='Service 1B') AND (APM_AlertsAndReportsData.ComponentStatus='Down')
)
4. I tried to nest it as well, but same result - it will not return any rows
WHERE
(
((APM_AlertsAndReportsData.ComponentName='Service 1A') AND (APM_AlertsAndReportsData.ComponentStatus='Down'))
AND
((APM_AlertsAndReportsData.ComponentName='Service 1B') AND (APM_AlertsAndReportsData.ComponentStatus='Down'))
)
Any suggestions, please advice.
Thanks