Discussion:
Simple up/down Dashboard
(too old to reply)
kn29393
2009-09-10 03:54:01 UTC
Permalink
I have a customer who is looking for a feature in SCOM similar to another
product they have. It essentially just lists all their servers (about 500)
and whether they are up or down. The product constantly pings them to
determine up/down.

Obviously SCOM can report up/down and generate alerts, but how can I display
this for all 500+ servers on one LCD for their server team to see?

Thanks!
Jacques
2009-11-07 13:35:02 UTC
Permalink
A quick and nasty way that I have found is do to a custom report.
Use the below SQL script as your query:

Use OperationsManager;
SELECT BaseManagedEntity.Path AS Host, Availability.IsAvailable AS
Available, Availability.LastModified AS LastUpdate
FROM Availability JOIN BaseManagedEntity
ON Availability.BaseManagedEntityID = BaseManagedEntity.BaseMAnagedEntityID

You can then present that report via reportservices.
Post by kn29393
I have a customer who is looking for a feature in SCOM similar to another
product they have. It essentially just lists all their servers (about 500)
and whether they are up or down. The product constantly pings them to
determine up/down.
Obviously SCOM can report up/down and generate alerts, but how can I display
this for all 500+ servers on one LCD for their server team to see?
Thanks!
Continue reading on narkive:
Loading...