opentelemetry-java-instrume.../instrumentation/tomcat
Lauri Tulmin 300ad5ebb3
Fix request header capture corrupting tomcat request (#11469)
2024-05-29 09:11:05 +03:00
..
tomcat-7.0/javaagent Convert tomcat 7 tests from groovy to java (#11402) 2024-05-21 09:57:35 +03:00
tomcat-10.0/javaagent Convert tomcat 10 tests from groovy to java (#11420) 2024-05-24 12:00:58 +03:00
tomcat-common/javaagent Fix request header capture corrupting tomcat request (#11469) 2024-05-29 09:11:05 +03:00
tomcat-jdbc Remove the public from the junit5 test class (#11344) 2024-05-13 11:28:41 +03:00
README.md Introduce markdown lint check (#7175) 2022-11-16 20:48:42 -08:00

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.