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
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
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