opentelemetry-java-instrume.../instrumentation/tomcat
Mateusz Rzeszutek d6c2aff7c2
Change `http.request.body.size` and `http.response.body.size` attributes from recommended to opt-in (#9799)
2023-11-02 11:20:50 -07:00
..
tomcat-7.0/javaagent Add HTTP server tests for non standard methods (#9446) 2023-09-15 08:43:36 -07:00
tomcat-10.0/javaagent Add HTTP server tests for non standard methods (#9446) 2023-09-15 08:43:36 -07:00
tomcat-common/javaagent Change `http.request.body.size` and `http.response.body.size` attributes from recommended to opt-in (#9799) 2023-11-02 11:20:50 -07:00
tomcat-jdbc Update error prone (#6646) 2022-09-23 11:24:40 -07: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.