Can we get applicaton wise uptime of each application in Newrelic

131 Views Asked by At

Is it possible to get the application wise uptime for each application in Newrelic Dashboard.

SELECT percentage(count(*), WHERE result='SUCCESS' AND appName LIKE '%' AND  entity.guid='someid') FROM SyntheticCheck SINCE 5 week ago
1

There are 1 best solutions below

3
On

Try this NRQL by using FACET monitorname. Also remove entity.guid unless you need it for something.

SELECT percentage(count(*), WHERE result='SUCCESS' AND appName LIKE '%') FROM SyntheticCheck SINCE 5 week ago FACET monitorname