Lauri Tulmin 300ad5ebb3 Fix request header capture corrupting tomcat request (#11469) 9 달 전
..
tomcat-10.0 98d0c3d39b Convert tomcat 10 tests from groovy to java (#11420) 9 달 전
tomcat-7.0 b36d2845b3 Convert tomcat 7 tests from groovy to java (#11402) 9 달 전
tomcat-common 300ad5ebb3 Fix request header capture corrupting tomcat request (#11469) 9 달 전
tomcat-jdbc 717c44ea54 Remove the public from the junit5 test class (#11344) 10 달 전
README.md 2d7395c44b Introduce markdown lint check (#7175) 2 년 전

README.md

Instrumentation for Tomcat request handlers

Tomcat support is divided into the following sub-modules:

  • tomcat-common:javaagent contains common type instrumentation, advice helper classes and abstract tracer used by the javaagent modules of all supported Tomcat versions
  • tomcat-7.0:javaagent applies Tomcat request handler instrumentation for versions [7, 10)
  • tomcat-10.0:javaagent applies Tomcat request handler instrumentation for versions [10,)

Instrumentations in tomcat-7.0 and tomcat-10.0 are mutually exclusive, this is guaranteed by tomcat-10.0 instrumentation checking that its Request class uses jakarta.servlet classes, and the tomcat-7.0 module doing the opposite check.