New relic to show the errors for all apps togather

323 Views Asked by At

Since we have configured our entire stack as different apps on new relic including for multiple brands. I have to switch apps to check for errors on each one. Is there a way to check for errors on all apps togather in one view?

Thanks

1

There are 1 best solutions below

0
On

You can use the following New Relic Insights queries to display metrics for up to 1000 applications from the same New Relic account on a timeseries chart:

Error Count by Application

SELECT count(*) FROM Transaction WHERE errorType IS NOT NULL FACET appName SINCE 1 hour ago TIMESERIES LIMIT 1000

Error Percentage by Application

SELECT percentage(count(*), WHERE errorType IS NOT NULL) FROM Transaction FACET appName SINCE 1 hour ago TIMESERIES LIMIT 1000

If you want to explore a variation of these queries, you can use the Insights Data Explorer which has a UI or modify the NRQL above.

Then save the chart to an Insights Dashboard.