Comments
-
Thought I'd mention that I log the poller stats daily to an internal database table. Then I can see how things change over time and create my own SQL-based alerts. FYI. SELECT e.ServerName, e.IP, e.ServerType, e.Elements, ep.PropertyValue AS PollingRate FROM Engines e JOIN EngineProperties ep ON e.EngineID = ep.EngineID…
-
Great post. I wish I would have come across this *before* I created basically the same queries myself. Below is the query I use to log poller data to an internal SQL database every night. Over time it can come in very handy, and enables me to create my own custom alerts for Polling Rate thresholds. SELECT ep.EngineID AS…