Skip to content

Commit 11cd77d

Browse files
committed
Fix yaml lint issue
Signed-off-by: Pete Wall <pete.wall@grafana.com>
1 parent 09f9bfe commit 11cd77d

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

charts/k8s-monitoring/charts/feature-application-observability/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ Be sure perform actual integration testing in a live environment in the main [k8
115115

116116
| Key | Type | Default | Description |
117117
|-----|------|---------|-------------|
118-
| processors.k8sattributes.annotations | list | `[]` | Kubernetes annotations to extract and add to the attributes of the received telemetry data. |
119-
| processors.k8sattributes.labels | list | `[]` | Kubernetes labels to extract and add to the attributes of the received telemetry data. |
118+
| processors.k8sattributes.annotations | list | `[]` | Kubernetes annotations to extract and add to the attributes of the received telemetry data in the form of a list of otelcol.processor.k8sattributes extract > annotation blocks. See the [Alloy documentation](https://grafana.com/docs/agent/latest/flow/reference/components/otelcol.processor.k8sattributes/#annotation-block) for details on how to configure annotation blocks. |
119+
| processors.k8sattributes.labels | list | `[]` | Kubernetes labels to extract and add to the attributes of the received telemetry data in the form of a list of otelcol.processor.k8sattributes extract > label blocks. See the [Alloy documentation](https://grafana.com/docs/agent/latest/flow/reference/components/otelcol.processor.k8sattributes/#extract-label-block) for details on how to configure label blocks. |
120120
| processors.k8sattributes.metadata | list | `["k8s.namespace.name","k8s.pod.name","k8s.deployment.name","k8s.statefulset.name","k8s.daemonset.name","k8s.cronjob.name","k8s.job.name","k8s.node.name","k8s.pod.uid","k8s.pod.start_time"]` | Kubernetes metadata to extract and add to the attributes of the received telemetry data. |
121121
| processors.k8sattributes.passthrough | bool | `false` | Pass through signals as-is, only adding a `k8s.pod.ip` resource attribute. |
122122

charts/k8s-monitoring/charts/feature-application-observability/values.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,8 @@ processors:
176176
# -- Enable getting resource attributes from the host machine.
177177
# @section -- Processors: Resource Detection
178178
enabled: true
179-
# -- The priority list of sources from which the hostname will be determined. Options: ["dns", "os", "cname", "lookup"].
179+
# -- The priority list of sources from which the hostname will be determined.
180+
# Options: ["dns", "os", "cname", "lookup"].
180181
# @section -- Processors: Resource Detection
181182
hostnameSources:
182183
- os
@@ -218,11 +219,17 @@ processors:
218219
- k8s.pod.uid
219220
- k8s.pod.start_time
220221

221-
# -- Kubernetes labels to extract and add to the attributes of the received telemetry data in the form of a list of otelcol.processor.k8sattributes extract > label blocks. Docs: https://grafana.com/docs/agent/latest/flow/reference/components/otelcol.processor.k8sattributes/#extract-label-block
222+
# -- Kubernetes labels to extract and add to the attributes of the received telemetry data in the form of a list of
223+
# otelcol.processor.k8sattributes extract > label blocks. See the
224+
# [Alloy documentation](https://grafana.com/docs/agent/latest/flow/reference/components/otelcol.processor.k8sattributes/#extract-label-block)
225+
# for details on how to configure label blocks.
222226
# @section -- Processors: K8s Attributes
223227
labels: []
224228

225-
# -- Kubernetes annotations to extract and add to the attributes of the received telemetry data in the form of a list of otelcol.processor.k8sattributes extract > annotation blocks. Docs: https://grafana.com/docs/agent/latest/flow/reference/components/otelcol.processor.k8sattributes/#annotation-block
229+
# -- Kubernetes annotations to extract and add to the attributes of the received telemetry data in the form of a
230+
# list of otelcol.processor.k8sattributes extract > annotation blocks. See the
231+
# [Alloy documentation](https://grafana.com/docs/agent/latest/flow/reference/components/otelcol.processor.k8sattributes/#annotation-block)
232+
# for details on how to configure annotation blocks.
226233
# @section -- Processors: K8s Attributes
227234
annotations: []
228235

0 commit comments

Comments
 (0)