Skip to content

Commit 2b86f00

Browse files
committed
wip
Signed-off-by: Attila Mészáros <a_meszaros@apple.com>
1 parent 392f40e commit 2b86f00

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
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.newMicrometerMetricsV2Builder(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 SLO 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 Kubernetes 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 Kubernetes events received by the controller |
127127

128128
\* `namespace` tag is only included when `withNamespaceAsTag()` is enabled.
129129

micrometer-support/src/main/java/io/javaoperatorsdk/operator/monitoring/micrometer/MicrometerMetricsV2.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ public class MicrometerMetricsV2 implements Metrics {
4646
private static final String EVENT = "event";
4747
private static final String ACTION = "action";
4848
private static final String EVENTS_RECEIVED = "events.received";
49-
private static final String UNKNOWN_ACTION = "UNKNOWN";
5049
public static final String TOTAL_SUFFIX = ".total";
5150

5251
private static final String RECONCILIATIONS = "reconciliations.";

0 commit comments

Comments
 (0)