Web based JMX console for Tomcat?

前端 未结 2 1900
你的背包
你的背包 2021-02-01 09:06

Are there any web based JMX consoles available for Tomcat that basically provide the same functionality as Tomcat\'s JMX Proxy Servlet but in a more user friendly manner?

<
相关标签:
2条回答
  • 2021-02-01 09:28

    JMiniX is released as a JAR file, so it is up to you if you deploy it as a part of your application or if you deploy it as an web application.

    Work in progress is Aji which looks promising and which would allow running the Console and the application to monitor on different machines.

    Out of the box there is the Tomcat Manager which provides a JMX proxy interface.

    Jolokia is an HTTP/JSON bridge for remote JMX access. See this blogpost for implementing a JMX based dashboard.

    I switched (or was forced to switch by our customer) to PSI Probe, a replacement of Tomcat Manager. PSI Probe does not provide a JMX proxy (Issue accepted), but displays Tomcat information very well. From their web site:

    Unlike many other server monitoring tools, PSI Probe does not require any changes to your existing apps. It provides all of its features through a web-accessible interface that becomes available simply by deploying it to your server. These features include:

    • Requests: Monitor traffic in real-time, even on a per-application basis.
    • Sessions: Browse/search attributes, view last IP, expire, estimate size.
    • JSP: Browse, view source, compile.
    • Data Sources: View pool usage, execute queries.
    • Logs: View contents, download, change levels at runtime.
    • Threads: View execution stack, kill.
    • Connectors: Status, usage charts.
    • Cluster: Status, usage charts.
    • JVM: Memory usage charts, advise GC
    • Java Service Wrapper: Restart JVM.
    • System: CPU usage, memory usage, swap file usage.

    So to summarize it: If there would be a tool like PSI Probe but with JMX proxying functionality I would be happy. Unfortunately I did't find any, but a PSI Probe issue is scheduled.

    0 讨论(0)
  • 2021-02-01 09:28

    You might want to take a look at JManage, unfortunately it doesn't seem to be developed anymore.

    0 讨论(0)
提交回复
热议问题