cloudbud
cloudbud

Reputation: 3278

Can we get applicaton wise uptime of each application in Newrelic

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

Answers (1)

Salman
Salman

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

Related Questions