I currently have an api set up with the following route:
/api/v1.0/External/{id}/Player
/api/External/{id}/Player
When these URLs are hit by a client, we see many different URLs in Application Insights such as:
/api/v1.0/External/1/Player
/api/External/5/Player
/api/v1.0/External/7/Player
/api/External/1/Player
/api/v1.0/External/10/Player
/api/External/8/Player
When looking at failed operations, this makes looking for common errors in an endpoint very difficult when these are spread around.
Is there any way to get application insights to treat all of the above URLs are the same URL?