Thanks @yuanliu, I explained why I couldn't use path directly, because it contains actual parameters. For example, for the route /orders/{orderID}, the path could be: /orders/123456 /orders/21312...
See more...
Thanks @yuanliu, I explained why I couldn't use path directly, because it contains actual parameters. For example, for the route /orders/{orderID}, the path could be: /orders/123456 /orders/213123 /orders/435534 I want to analyze, for example, count of failed requests, or percentiles of call duration on this particular API route /orders/{orderID}. Of course I can modify my service code to print the route pattern in log, but that is another way, i need to deploy new code to production environment.