Hello.
Some nodes goes down more than four times per hour.
Can I create Alert with this request?
select caption,count(*) as total
from events inner join nodes on (networknode=nodeid)
where eventtime >dateadd(hour,-1,getdate()) and eventtype=1
group by caption
having count(*)>=4
Thanks.