Skip to content

Commit 8305515

Browse files
committed
fix table format
Signed-off-by: Attila Mészáros <a_meszaros@apple.com>
1 parent 301e630 commit 8305515

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

docs/content/en/docs/documentation/observability.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -113,17 +113,17 @@ Metrics metrics = MicrometerMetricsV2.newBuilder(registry)
113113
All meters use `controller.name` as their primary tag. Counters optionally carry a `namespace` tag when
114114
`withNamespaceAsTag()` is enabled.
115115

116-
| Meter name (Micrometer) | Type | Tags | Description |
117-
|--------------------------------------|---------|---------------------------------------------------|-----------------------------------------------------------------|
118-
| `reconciliations.active` | gauge | `controller.name` | Number of reconciler executions currently executing |
119-
| `reconciliations.queue` | gauge | `controller.name` | Number of resources currently queued for reconciliation |
120-
| `custom_resources` | gauge | `controller.name` | Number of custom resources tracked by the controller |
121-
| `reconciliations.execution.duration` | timer | `controller.name` | Reconciliation execution duration with explicit bucket histogram |
122-
| `reconciliations.started.total` | counter | `controller.name`, `namespace`* | Number of reconciliations started (including retries) |
123-
| `reconciliations.success.total` | counter | `controller.name`, `namespace`* | Number of successfully finished reconciliations |
124-
| `reconciliations.failure.total` | counter | `controller.name`, `namespace`* | Number of failed reconciliations |
125-
| `reconciliations.retries.total` | counter | `controller.name`, `namespace`* | Number of reconciliation retries |
126-
| `events.received` | counter | `controller.name`, `event`, `action`, `namespace`* | Number of events received by the controller |
116+
| Meter name (Micrometer) | Type | Tags | Description |
117+
|--------------------------------------|---------|----------------------------------------------------|------------------------------------------------------------------|
118+
| `reconciliations.active` | gauge | `controller.name` | Number of reconciler executions currently executing |
119+
| `reconciliations.queue` | gauge | `controller.name` | Number of resources currently queued for reconciliation |
120+
| `custom_resources` | gauge | `controller.name` | Number of custom resources tracked by the controller |
121+
| `reconciliations.execution.duration` | timer | `controller.name` | Reconciliation execution duration with explicit bucket histogram |
122+
| `reconciliations.started.total` | counter | `controller.name`, `namespace`* | Number of reconciliations started (including retries) |
123+
| `reconciliations.success.total` | counter | `controller.name`, `namespace`* | Number of successfully finished reconciliations |
124+
| `reconciliations.failure.total` | counter | `controller.name`, `namespace`* | Number of failed reconciliations |
125+
| `reconciliations.retries.total` | counter | `controller.name`, `namespace`* | Number of reconciliation retries |
126+
| `events.received` | counter | `controller.name`, `event`, `action`, `namespace`* | Number of events received by the controller |
127127

128128
\* `namespace` tag is only included when `withNamespaceAsTag()` is enabled.
129129
The execution timer uses explicit boundaries (10ms, 50ms, 100ms, 250ms, 500ms, 1s, 2s, 5s, 10s, 30s) to ensure

0 commit comments

Comments
 (0)