I have a Spring application monitored by Appdynamics. This application has a Service Endpoint recognized by Appdynamics, named lets say: /general/endpoint
Now within the application there are multiple endpoints like:
- /general/endpoint/do-something-1
- /general/endpoint/do-something-2
Now back to Appdynamics: Within the Service Endpoints menu I can find my /general/endpoint and click on it. Then I see a table with the actual REST API calls, their respective execution time, the specific URL (like /general/endpoint/do-something-1) and some more information.
If I am interested in monitoring the requests for a specific URL I can do the following:
- Select Filters
- Add Criteria > HTTP Request > URL
- Click on the added Criteria and enter the actual URL (/general/endpoint/do-something-1)
- Apply
Now I see what I want, all the requests and their potential problems for a specific URL inside my application.
Now comes my actual question:
How can I achieve the same for Dashboards?
I was only able to create a dashboard with the Calls per Minute for the /general/endpoint but not for a specific URL like /general/endpoint/do-something-1. Is there a way to apply the more fine grade filter for dashboards as well?