Replies: 1 comment 5 replies
-
I think there was a discussion about it, but no one proposed a change to support this case. We need someone to update the plugin and add a new interceptor to set the name. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Problem Description
I found an issue with the way SkyWalking collects
endpoint_name
for SpringMVC services. Instead of using the original URI, it collects the first value defined in the@RequestMapping
annotation.For example:
In this case, the endpoint_name will be
GET:/index
, even if the original request URI is/index2
.Upon reviewing the source code, this behavior is confirmed.
Potential Impact
It causes confusion when I try to use SkyWalking metrics for traffic management.
Question
Is there any plan to allow collecting the original URI through configuration in the future?
Beta Was this translation helpful? Give feedback.
All reactions