dingjiefei 717c44ea54 Remove the public from the junit5 test class (#11344) 10 ヶ月 前
..
tomcat-10.0 965ab55ceb Fix tomcat instrumentation when user includes wrong servlet api (#10757) 1 年間 前
tomcat-7.0 965ab55ceb Fix tomcat instrumentation when user includes wrong servlet api (#10757) 1 年間 前
tomcat-common 65ee9510f5 Rename the `instrumentation-api-semconv` module into `instrumentation-api-incubator` (#9985) 1 年間 前
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.