Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ class TelemetryParser {
// servlet-5.0 tests use jetty-12.0 instrumentation
entry("io.opentelemetry.servlet-5.0", singleton("io.opentelemetry.jetty-12.0")),
// runtime-telemetry library tests use a meter named "test"
entry("io.opentelemetry.runtime-telemetry", singleton("test")));
entry("io.opentelemetry.runtime-telemetry", singleton("test")),
// tomcat-jdbc was renamed to tomcat-jdbc-8.5 but the scope name was not changed
entry("io.opentelemetry.tomcat-jdbc-8.5", singleton("io.opentelemetry.tomcat-jdbc")));
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

alternatively we could update the actual scope name, but I wasn't sure if we've been doing that as part of #18428

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@trask should we put the update to the scope name behind v3 preview flag or can we do it right away?

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh, looks like I missed this when updating the module name, check out what I did in CxfSingletons.java

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll send PR, looks like I also missed for oshi

}

/**
Expand Down
Loading