Hi all
Need advice and references for report availability queries with filtering
show node name, ip address, availability, customproperties with coverage last month
The best place to start is in the Orion.Nodes table
Hi Bob
Thanks for you answer, but it seems still got error message need more
enlightenment
SELECT TOP 100 N.Caption AS [NodeName] ,AVG(N.ResponseTimeHistory.Availability) AS [Availability], n.CustomProperties._GroupFROM Orion.Nodes as NWHERE N.ResponseTimeHistory.DateTime>ADDDAY(-7,GETUTCDATE())GROUP BY N.Caption, n.CustomProperties.YOURCUSTOMPROPERTYNAMEHEREORDER BY AVG(N.ResponseTimeHistory.Availability)