Hello team,I am learning about how pinpoint works. And I hava the following questions.
- why PinpointBootstrap class should be loaded by BootstrapClassLoader,why not SystemClassLoader?As we know, main class is loaded by SystemclassLoader.
If the agent loads PinpointBootstrap into SystemCl, it cannot instrument the JDK class.

- why modify the parent of AgentClassLoader to BootstrapClassLoader?why it can avoid deadlock and avoid library conflicts?how does it work?
There is no circular dependency because ClassLoader hierarchy is much simpler.


- why plugins require a separate pluginsclassloader,why not use agentclassloader?
I think it is not good for plugin to access all APIs of Agent.
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
If the agent loads PinpointBootstrap into SystemCl, it cannot instrument the JDK class.
