opentelemetry-java-instrume.../instrumentation/tomcat
Lauri Tulmin 6c6223b969
Use latest.release instead of + (#13485)
2025-03-11 11:42:21 +00:00
..
tomcat-7.0/javaagent fix(deps): update dependency io.opentelemetry.semconv:opentelemetry-semconv to v1.30.0-rc.1 (#13116) 2025-01-30 14:18:43 -08:00
tomcat-10.0/javaagent Use latest.release instead of + (#13485) 2025-03-11 11:42:21 +00:00
tomcat-common/javaagent Implement ExtendedTextMapGetter in http server instrumentations (#13053) 2025-01-20 14:11:05 +02:00
tomcat-jdbc Rename "db.client.connections.usage" to "db.client.connection.count" (#12886) 2024-12-14 11:55:58 +02: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.