Tomcat监控工具probe

1、probe介绍

probe也叫psi-probe,是lambdaprobe的一个分支版本,用于Tomcat应用状态的监控、数据库连接监控、应用监控、日志信息监控、监控集群运行状态、监控所以线程的状态、统计Tomcat连接等。

2、下载

https://github.com/psi-probe/psi-probe/releases

3、安装

将probe.war 部署到webapps下

设置tomcat的权限 conf/tomcat-users.xml

<role rolename="manager"/> 
<role rolename="poweruser"/>
<role rolename="tomcat"/> 
<role rolename="poweruserplus"/> 
<role rolename="probeuser"/> 
<user   username="tomcat"password="tomcat"roles="manager,poweruser,probeuser,poweruserplus" />

tomcat版本为 9.0.12

 

4、启动

http://ip:8080/probe

原文地址:https://www.cnblogs.com/linlf03/p/12026336.html