This node property determines the format in which REST-based business transactions are named. You can use variables to populate the name with values bound at runtime. Any characters in the property value that do not match a variable are treated as literal text in the business transaction name, so you can, for example, separate variables with a colon, slash, or another character. The agent takes each parameter and fills in the proper value based on the annotations and properties of the Java class: {class-name} : The app agent will fill in the name of the Java class mapped to the REST resource.{method-name} : The method being called.{class-annotation} : Class annotation values.{method-annotation} : Method annotation applied to the method (not always present).{rest-uri} : URI of the REST resource. The REST URI is further configured using the following properties:{http-method} : HTTP method of the request, GET, POST, and so on.{param-%d} : A parameter to the method identified by position. Replace %d with the position of the parameter (ZERO-based).
|