I am looking for a Pier chart output for three items
Server Availability
Network Availability
Applications Availability
It should be on the same page and configurable for last 7 days etc.
Is this already available in SolarWinds NMS?
TIA
Are you looking for something similar to this? You could easily apply a filter and make duplicates filtered to server only or network only nodes. I don't think it would be possible to display historical information (over 7 days) in pie chart form. Usually pie charts show a single point in time only. Mine are configured to show current status.
Yes! Which view is this? I can maybe create something that acts on a 7 day average and display it.
Its my own Modern Dashboard that I happen to create just for testing. Here are both queries.
Query 1 [Application Health]:
SELECT COUNT(1) AS Total,CASE WHEN availability=4 THEN 14 WHEN availability=8 THEN 9 ELSE Availability END AS StatusFROM Orion.APM.CurrentApplicationStatus GROUP BY Availability
Query 1 settings:
Query 2 [Node Health]:
SELECT COUNT(NodeID) as value, Status as status FROM Orion.Nodes GROUP BY status ORDER BY value DESC
Query 2 settings:
You can also check out here, where you can import user created modern dashboards (mine is not in there, but many other useful KPI style dashboards are).
Can you put yours in the content exchange? They look great.