Can anyone help in building the query to build a chart to display Number of 200 responses from /test vs number of 401 responses from /test
Select count(*) from Transaction where name like '%/test' and httpResponseCode in ('200','401') facet httpResponseCode
Modify to use the correct attribute names etc.
2 Likes
Hi, @sjadhav2: You may find this free course helpful in learning how to write NRQL queries and create dashboards:
You may also install the free NRQL Lessons application to your account.
1 Like