Which module is your feature request related to?
ALL
Is your feature request related to a problem?
NO
Describe the solution you'd like
I found that the requests are grouped by the business in some apm product for example the dynatrace.
For example when the target app is based on spring mvc.
The requests are grouped by the handler methods which has RequestMapping annotations.
And report the call-chain data by the group.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
hi guys, I am a java developer and I am interested in pinpoint. If pinpoint plan to accept my suggestion, I can contribute my code. thanks guys. looking forward for your final decision.
@xiaoshao Hi
I do not know what the call-chain means.
Does this feature mean URL statistics?
Example Screenshot
https://github.com/slanatech/swagger-stats/raw/master/screenshots/methods.png?raw=true

sorry, we named the call stack in pinpoint with call-chain.
Yes, I suggest to group the call stack with URL statistics.
For example there is some code in the Spring MVC as following.
@Controller
public class SecondController {
@GetMapping("/address/{name}")
@ResponseBody
public List<String> address(@PathVariable("name") String name) {
List<String> address = new ArrayList<>();
address.add("first");
address.add("second");
return address;
}
}
We can group the callstack all the request which is handled by the annotation of the method address, even more we can report the callstack by this to avoid that some handler is missed.
what do you think about it.
We welcome your suggestions
I agree with your idea.
We have plans to aggregate statistical data into the RequestMapping annotations,
but we do not have enough time to develop.
Below is our idea.
Unable to handle annotation in bytecode api
Aggregation plan
聽聽聽 1. agent memory
聽聽聽 2. collector
聽聽聽聽聽 - Use the Table.incrementColumnValue() API of hbase
聽聽聽 3. flink
聽聽聽 Not determined
@emeroad My idea focus on the javaagent.
I found that the spring MVC register the handler in AbstractUrlHandlerMapping and AbstractHandlerMethodMapping After read the spring mvc code.
SamplingRateSamplertransactionType in TraceId or TraceRoot => looking forward for you suggesting which one is better.transactionType in span in order that we can group the callstack by transaction type.After finished this, I can do more thing for other module.
what do u think about it ?
This issue/proposal has been automatically marked as stale because it hasn't had any recent activity. It will automatically be closed if no further activity occurs for 20days. If you think this should still be open, or the problem still persists, just pop a reply in the comments and one of the maintainers will (try!) to follow up. Thank you for your interest and contribution to the Pinpoint Community.
https://github.com/naver/pinpoint/pull/5054 is on the way
This issue/proposal has been automatically marked as stale because it hasn't had any recent activity. It will automatically be closed if no further activity occurs for 20days. If you think this should still be open, or the problem still persists, just pop a reply in the comments and one of the maintainers will (try!) to follow up. Thank you for your interest and contribution to the Pinpoint Community.
Most helpful comment
sorry, we named the call stack in pinpoint with call-chain.
Yes, I suggest to group the call stack with URL statistics.
For example there is some code in the Spring MVC as following.
We can group the callstack all the request which is handled by the annotation of the method
address, even more we can report the callstack by this to avoid that some handler is missed.what do you think about it.