Prechádzať zdrojové kódy

Correct small formatting inconsistency in the readme (#10190)

Lauri Tulmin 1 rok pred
rodič
commit
d9c4caccb2

+ 3 - 3
instrumentation/micrometer/micrometer-1.5/javaagent/README.md

@@ -1,7 +1,7 @@
 # Settings for the Micrometer bridge instrumentation
 
 | System property                                            | Type    | Default | Description                                                                                                                                                                                                                                                 |
-| ---------------------------------------------------------- | ------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| ---------------------------------------------------------- |---------| ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
 | `otel.instrumentation.micrometer.base-time-unit`           | String  | `s`     | Set the base time unit for the OpenTelemetry `MeterRegistry` implementation. <details><summary>Valid values</summary>`ns`, `nanoseconds`, `us`, `microseconds`, `ms`, `milliseconds`, `s`, `seconds`, `min`, `minutes`, `h`, `hours`, `d`, `days`</details> |
-| `otel.instrumentation.micrometer.prometheus-mode.enabled`  | boolean | false   | Enable the "Prometheus mode" this will simulate the behavior of Micrometer's PrometheusMeterRegistry. The instruments will be renamed to match Micrometer instrument naming, and the base time unit will be set to seconds.                                 |
-| `otel.instrumentation.micrometer.histogram-gauges.enabled` | boolean | false   | Enables the generation of gauge-based Micrometer histograms for `DistributionSummary` and `Timer` instruments.                                                                                                                                              |
+| `otel.instrumentation.micrometer.prometheus-mode.enabled`  | Boolean | `false` | Enable the "Prometheus mode" this will simulate the behavior of Micrometer's PrometheusMeterRegistry. The instruments will be renamed to match Micrometer instrument naming, and the base time unit will be set to seconds.                                 |
+| `otel.instrumentation.micrometer.histogram-gauges.enabled` | Boolean | `false` | Enables the generation of gauge-based Micrometer histograms for `DistributionSummary` and `Timer` instruments.                                                                                                                                              |

+ 11 - 11
instrumentation/runtime-telemetry/runtime-telemetry-java17/library/README.md

@@ -37,14 +37,14 @@ default, and the telemetry each produces:
 
 | JfrFeature                | Default Enabled | Metrics                                                                                                                                                                                             |
 | ------------------------- | --------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| BUFFER_METRICS            | false           | `process.runtime.jvm.buffer.count`, `process.runtime.jvm.buffer.limit`, `process.runtime.jvm.buffer.usage`                                                                                          |
-| CLASS_LOAD_METRICS        | false           | `process.runtime.jvm.classes.current_loaded`, `process.runtime.jvm.classes.loaded`, `process.runtime.jvm.classes.unloaded`                                                                          |
-| CONTEXT_SWITCH_METRICS    | true            | `process.runtime.jvm.cpu.context_switch`                                                                                                                                                            |
-| CPU_COUNT_METRICS         | true            | `process.runtime.jvm.cpu.limit`                                                                                                                                                                     |
-| CPU_UTILIZATION_METRICS   | false           | `process.runtime.jvm.cpu.utilization`, `process.runtime.jvm.system.cpu.utilization`                                                                                                                 |
-| GC_DURATION_METRICS       | false           | `process.runtime.jvm.gc.duration`                                                                                                                                                                   |
-| LOCK_METRICS              | true            | `process.runtime.jvm.cpu.longlock`                                                                                                                                                                  |
-| MEMORY_ALLOCATION_METRICS | true            | `process.runtime.jvm.memory.allocation`                                                                                                                                                             |
-| MEMORY_POOL_METRICS       | false           | `process.runtime.jvm.memory.committed`, `process.runtime.jvm.memory.init`, `process.runtime.jvm.memory.limit`, `process.runtime.jvm.memory.usage`, `process.runtime.jvm.memory.usage_after_last_gc` |
-| NETWORK_IO_METRICS        | true            | `process.runtime.jvm.network.io`, `process.runtime.jvm.network.time`                                                                                                                                |
-| THREAD_METRICS            | false           | `process.runtime.jvm.threads.count`                                                                                                                                                                 |
+| BUFFER_METRICS            | `false`         | `process.runtime.jvm.buffer.count`, `process.runtime.jvm.buffer.limit`, `process.runtime.jvm.buffer.usage`                                                                                          |
+| CLASS_LOAD_METRICS        | `false`         | `process.runtime.jvm.classes.current_loaded`, `process.runtime.jvm.classes.loaded`, `process.runtime.jvm.classes.unloaded`                                                                          |
+| CONTEXT_SWITCH_METRICS    | `true`          | `process.runtime.jvm.cpu.context_switch`                                                                                                                                                            |
+| CPU_COUNT_METRICS         | `true`          | `process.runtime.jvm.cpu.limit`                                                                                                                                                                     |
+| CPU_UTILIZATION_METRICS   | `false`         | `process.runtime.jvm.cpu.utilization`, `process.runtime.jvm.system.cpu.utilization`                                                                                                                 |
+| GC_DURATION_METRICS       | `false`         | `process.runtime.jvm.gc.duration`                                                                                                                                                                   |
+| LOCK_METRICS              | `true`          | `process.runtime.jvm.cpu.longlock`                                                                                                                                                                  |
+| MEMORY_ALLOCATION_METRICS | `true`          | `process.runtime.jvm.memory.allocation`                                                                                                                                                             |
+| MEMORY_POOL_METRICS       | `false`         | `process.runtime.jvm.memory.committed`, `process.runtime.jvm.memory.init`, `process.runtime.jvm.memory.limit`, `process.runtime.jvm.memory.usage`, `process.runtime.jvm.memory.usage_after_last_gc` |
+| NETWORK_IO_METRICS        | `true`          | `process.runtime.jvm.network.io`, `process.runtime.jvm.network.time`                                                                                                                                |
+| THREAD_METRICS            | `false`         | `process.runtime.jvm.threads.count`                                                                                                                                                                 |