I want to use java melody to monitoring may webapp on server tomcat. In path /var/lib/tomcat6/webapps
i hava list like this
manager ROOT SIG-CORE-SERVICE
If I add this into web.xml in ROOT
<filter>
<filter-name>monitoring</filter-name>
<filter-class>net.bull.javamelody.MonitoringFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>monitoring</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<listener>
<listener-class>net.bull.javamelody.SessionListener</listener-class>
</listener>
I can monitoring all webapps with link http://<host>/monitoring
. Is it right? But i want to monitoring only app SIG-CORE-SERVICE like this http://<host>/SIG-CORE-SERVICE/monitoring
How can I do? Thanks alot!