Reputation: 3278
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
Upvotes: 1
Views: 164
Reputation: 1849
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
Upvotes: 0