|
3 | 3 | ## Unreleased |
4 | 4 |
|
5 | 5 | ### Migration notes |
6 | | -- Tomcat metric `http.server.tomcat.errorCount` --> `tomcat.error.count` |
7 | | - - attribute: `name` --> `tomcat.request.processor.name` |
8 | | - - type: Gauge --> Counter |
9 | | -- Tomcat metric `http.server.tomcat.requestCount` --> `tomcat.request.count` |
10 | | - - attribute: `name` --> `tomcat.request.processor.name` |
11 | | - - type: Gauge --> Counter |
12 | | -- Tomcat metric `http.server.tomcat.maxTime` --> `tomcat.request.duration.max` |
13 | | - - attribute: `name` --> `tomcat.request.processor.name` |
14 | | - - unit: `ms` --> `s` |
15 | | -- Tomcat metric `http.server.tomcat.processingTime` --> `tomcat.request.duration.sum` |
16 | | - - attribute: `name` --> `tomcat.request.processor.name` |
17 | | - - unit: `ms` --> `s` |
18 | | -- Tomcat metric `http.server.tomcat.traffic` --> `tomcat.network.io` |
19 | | - - attribute: `name` --> `tomcat.request.processor.name`, `direction` --> `network.io.direction` |
20 | | -- Tomcat metric `http.server.tomcat.sessions.activeSessions` --> `tomcat.session.active.count` |
21 | | - - attribute: `context` --> `tomcat.context` |
22 | | -- Tomcat metric `http.server.tomcat.threads` split into two metrics: `tomcat.thread.count` and `tomcat.thread.busy.count` |
23 | | - - attribute: `name` --> `tomcat.thread.pool.name`, `state` removed |
| 6 | +- Tomcat metrics definitions provided by JMX Metric Insight subsystem |
| 7 | + - metric `http.server.tomcat.errorCount` --> `tomcat.error.count` |
| 8 | + - attribute: `name` --> `tomcat.request.processor.name` |
| 9 | + - type: Gauge --> Counter |
| 10 | + - metric `http.server.tomcat.requestCount` --> `tomcat.request.count` |
| 11 | + - attribute: `name` --> `tomcat.request.processor.name` |
| 12 | + - type: Gauge --> Counter |
| 13 | + - metric `http.server.tomcat.maxTime` --> `tomcat.request.duration.max` |
| 14 | + - attribute: `name` --> `tomcat.request.processor.name` |
| 15 | + - unit: `ms` --> `s` |
| 16 | + - metric `http.server.tomcat.processingTime` --> `tomcat.request.duration.sum` |
| 17 | + - attribute: `name` --> `tomcat.request.processor.name` |
| 18 | + - unit: `ms` --> `s` |
| 19 | + - metric `http.server.tomcat.traffic` --> `tomcat.network.io` |
| 20 | + - attribute: `name` --> `tomcat.request.processor.name`, `direction` --> `network.io.direction` |
| 21 | + - metric `http.server.tomcat.sessions.activeSessions` --> `tomcat.session.active.count` |
| 22 | + - attribute: `context` --> `tomcat.context` |
| 23 | + - metric `http.server.tomcat.threads` split into two metrics: `tomcat.thread.count` and `tomcat.thread.busy.count` |
| 24 | + - attribute: `name` --> `tomcat.thread.pool.name`, `state` removed |
24 | 25 |
|
25 | 26 | ### 📈 Enhancements |
26 | 27 |
|
27 | | -- Improved Tomcat metrics alignment to semconv (see Migration notes above for details) and added new Tomcat metrics: `tomcat.session.active.limit`, `tomcat.thread.limit` |
| 28 | +- **JMX Metric Insight**: improved Tomcat metrics alignment to semconv (see Migration notes above for details) and added new Tomcat metrics: `tomcat.session.active.limit`, `tomcat.thread.limit` |
28 | 29 | ([#13650](https://github.com/open-telemetry/opentelemetry-java-instrumentation/pull/13650)) |
29 | 30 |
|
30 | 31 |
|
|
0 commit comments