评估所有方法中的一个线程性能
有一个线程跨多个包执行 50 个方法。我想评估每个方法的执行时间。该线程根据信号唤醒并处理这 50 个方法。
鼓励回答或讨论,但请阅读我的注释:
- 请不要建议将 System.nano/mills 放在每个方法的开头和结尾。
- 请不要提供分析器建议。
- 不建议将此应用程序与性能评估线混淆。
- 如果有人提供使用 BTrace 或 ThreadMXBean 或任何新内容的示例,我们将不胜感激。
喜欢以编程方式进行评估,因此如果有人有更好的想法,请感激不尽。
There is one thread which executes say 50 methods across several packages. I want to evaluate execution time for each method. This thread wakes on a signal and process this 50 method.
Answer or discussion is encouraged but please read my notes:
- Please do not suggest to put System.nano/mills at the start and at the end of each method.
- No profiler suggestion please.
- Do not suggest to mess this application with performances evaluation lines.
- Appreciate if someone gives an example using BTrace or ThreadMXBean or anything new.
Like to evaluate programmatically, so appreciate if anyone has better ideas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Perf4J 可能是一个选择。我自己从来没用过。但在网站上,他们支持注释方法以对其进行检测。可以通过 MXBean 观察实时统计数据。 jconsole 或运行后在日志文件中。
Perf4J might be an option. I've never used it myself. But from the website they support annotating methods in order to instrument them. Live stats can be observed via MXBean, aka. jconsole or after the run in log files.