在JMeter性能测试中监控Jboss中的资源使用情况
我们正在对 JBoss 4.0.5 部署的 Web 应用程序执行一些 JMeter 测试。我们希望将服务器上应用程序的资源使用情况(内存、线程等)与 JMeter 响应时间结果集成起来。
我们找到了一个使用 Tomcat 执行此操作的教程:http:// /www.informit.com/guides/content.aspx?g=java&seqNum=273 我们想知道是否可以用 JBoss 来完成。
一种替代方法是使用 jconsole 或类似的东西手动进行资源使用情况监控,但我们更喜欢自动化和集成的东西。
问候,
We are performing some JMeter tests on a JBoss 4.0.5 deployed web app. We want to integrate the resource usage on the application on the server (memory, threads, etc) with the JMeter response time results.
We have found a tutorial for doing that with Tomcat: http://www.informit.com/guides/content.aspx?g=java&seqNum=273 and we want to know if it could be done with JBoss.
One alternative is doing resource usage monitoring by hand, using jconsole or something similar, but we prefer something automated and integrated.
Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JBoss 包括 Tomcat,所以是的。请使用
/status?XML=true
,而不是本文中提到的/manager/status?XML=true
URL 路径。应该是这样。JBoss includes Tomcat, so yes. Instead of the
/manager/status?XML=true
URL path mentioned in the article, use/status?XML=true
. That should be it.