Can we create table widget by providing color to the text or the rows with availability 100% as green 90% as yellow and 80% as red or any color
Query Used:
SELECT DeviceCountry as ImpactedSite, ROUND(AVG(rt.Availability),2) as Availability
FROM Orion.ResponseTime as rt, Orion.NodesCustomProperties as cp
where rt.NodeID = cp.NodeID
and MINUTEDIFF(rt.DateTime,GETDATE()) <=15
and cp.DeviceSiteCategory is not NULL
Group by DeviceCountry ORDER by Availability ASC
