Hi
need urgent help
mentioned SWQL query is not providing correct average availability for todays date and business hour as compare to average availability getting from web report.
web report availability for todays business hours = 98.90
swql query = 93.1
SELECT CONCAT(ROUND(AVG([RT].Availability), 2), ' %') AS [Network], [RT].Node.CustomProperties.BRANCH_TYPE
FROM Orion.ResponseTime AS [RT]
WHERE [RT].DateTime >= DATETRUNC('day', GETDATE()) AND Hour([RT].DateTime) IN (9, 10, 11, 12, 13, 14, 15, 16, 17) AND [RT].Node.CustomProperties.BRANCH_TYPE = 'non-atm'
GROUP BY [RT].Node.CustomProperties.BRANCH_TYPE