Hi,
Is there any way to create an alert to trigger when a node was down 3 times in a period of one hour ?
yes, you can create a custom sql alert and search for the down event for that one node in the past hour and alert on that...
I found this sql query in Thwack:
select TOP 5 cast(message as varchar(200)) as EventMsg, COUNT(*) as Occurances
from Events
where eventtime >dateadd(hour,-1,getdate()) AND Message like '%down%'
group by cast(message as varchar(200)),EventType
having count(*)>=3
order by Occurances DESC
How could I change this query to show me node name and insert a custom property ?
Thanks