Skip to content

Commit 4214b36

Browse files
committed
docs: fix wrong & missing information
1 parent 74f2d89 commit 4214b36

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

docs/documentation/features.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -817,18 +817,19 @@ The micrometer implementation records the following metrics:
817817
| operator.sdk.reconciliations.started | counter | <resource metadata>, reconciliations.retries.last, reconciliations.retries.number | Number of started reconciliations per resource type |
818818
| operator.sdk.reconciliations.failed | counter | <resource metadata>, exception | Number of failed reconciliations per resource type |
819819
| operator.sdk.reconciliations.success | counter | <resource metadata> | Number of successful reconciliations per resource type |
820-
| operator.sdk.controllers.execution.reconcile | timer | <resource metadata>, controller | Time taken for reconciliations per controller |
821-
| operator.sdk.controllers.execution.reconcile.success | counter | <resource metadata>, controller, type | Number of successful reconciliations per controller |
822-
| operator.sdk.controllers.execution.reconcile.failure | counter | <resource metadata>, controller, exception | Number of failed reconciliations per controller |
823-
| operator.sdk.controllers.execution.cleanup.success | counter | <resource metadata>, controller, type | Number of successful cleanups per controller |
824-
| operator.sdk.controllers.execution.cleanup.failure | counter | <resource metadata>, controller, exception | Number of failed cleanups per controller |
820+
| operator.sdk.controllers.execution.reconcile | timer | <resource metadata>, controller | Time taken for reconciliations per controller |
821+
| operator.sdk.controllers.execution.cleanup | timer | <resource metadata>, controller | Time taken for cleanups per controller |
822+
| operator.sdk.controllers.execution.reconcile.success | counter | controller, type | Number of successful reconciliations per controller |
823+
| operator.sdk.controllers.execution.reconcile.failure | counter | controller, exception | Number of failed reconciliations per controller |
824+
| operator.sdk.controllers.execution.cleanup.success | counter | controller, type | Number of successful cleanups per controller |
825+
| operator.sdk.controllers.execution.cleanup.failure | counter | controller, exception | Number of failed cleanups per controller |
825826

826827
As you can see all the recorded metrics start with the `operator.sdk` prefix. `<resource metadata>`, in the table above,
827828
refers to resource-specific metadata and depends on the considered metric and how the implementation is configured and
828829
could be summed up as follows: `group?, version, kind, [name, namespace?], scope` where the tags in square
829830
brackets (`[]`) won't be present when per-resource collection is disabled and tags followed by a question mark are
830831
omitted if the associated value is empty. Of note, when in the context of controllers' execution metrics, these tag
831-
names are prefixed with `resource.`. This prefix might be removed in a future version for greater consistency.
832+
names are prefixed with `resource.`. This prefix might be removed in a future version for greater consistency.
832833

833834
## Optimizing Caches
834835

0 commit comments

Comments
 (0)