APM Server version:
7.6.0
APM Agent language and version:
Java - 1.17.0
Original install method (e.g. download page, yum, deb, from source, etc.) and version:
Download page
Fresh install or upgraded from other version?
Upgraded version
Is there anything special in your setup? For example, are you using the Logstash or Kafka outputs? Are you using a load balancer in front of the APM Servers? Have you changed index pattern, generated custom templates, changed agent configuration etc.
No
Description of the problem including expected versus actual behavior. Please include screenshots (if relevant):
We have a path parameterized API implemented in our Springboot application:
Example calls to this API are like:
/owners/3/edit
/owners/4/edit
We would like to group all these transactions based on the API mapping defined. For the above-mentioned example, we would like to group the APIs by /owners/{ownerId}
Currently, in Java we can do it by providing a wildcard expression in the url_groups property.
But for Python3.x agent and Nodejs agent the urls automatically get converted in the parameterized urls format.
Is there a way, we can convert the urls in this format without using the url_groups property?
If not, can you please suggest some approach which can be used to achieve the above for java agent by making some changes in the source code?