Replies: 1 comment 2 replies
-
The problem is exactly the fact that only server knows how/if it normalises urls. Client usually has no such knowledge. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Looking at the http conventions, the usage of http.route is specific to server spans:
https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/semantic_conventions/http.md
However, trying to find the right tag to use for a normalized REST like url. When analyzing client spans in aggregate, REST urls like this are a real pain:
On a server span, the http.route would have the normalized value and would look more like this:
When all systems are instrumented this is less of an issue, but when making external/vendor calls or calls to internal systems that are not instrumented 😲 having a normalized URL is very helpful. Any help appreciated.
Beta Was this translation helpful? Give feedback.
All reactions