1

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
cloudbud
  • 2,948
  • 5
  • 28
  • 54

1 Answers1

0

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
Salman
  • 1,573
  • 3
  • 13
  • 24
  • what is monitor name here? How can I get it – cloudbud Jan 24 '21 at 10:34
  • Which product you are using of Newrelic. If it is Synthetics then monitor name is the synthetic monitor name which you have created. For APM and browser NRQL will change. – Salman Jan 25 '21 at 09:37
  • I executed the command in synthetics but I cant see anything, the dashboard is blank – cloudbud Jan 25 '21 at 12:35