Skip to content

Commit 0768b44

Browse files
authored
Add k8s label and annotations to pod logs (#937)
Signed-off-by: Pete Wall <[email protected]>
1 parent 4aa6af8 commit 0768b44

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+363
-13
lines changed

charts/feature-pod-logs/README.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,21 @@ Actual integration testing in a live environment should be done in the main [k8s
3636

3737
## Values
3838

39-
### Logs Scrape: Pod Logs
39+
### Log Processing
40+
41+
| Key | Type | Default | Description |
42+
|-----|------|---------|-------------|
43+
| annotations | object | `{"job":"k8s.grafana.com/logs.job"}` | Log labels to set with values copied from the Kubernetes Pod annotations. Format: `<log_label>: <kubernetes_annotation>`. |
44+
| extraLogProcessingStages | string | `""` | Stage blocks to be added to the loki.process component for pod logs. ([docs](https://grafana.com/docs/alloy/latest/reference/components/loki/loki.process/#blocks)) This value is templated so that you can refer to other values from this file. |
45+
| labels | object | `{"app_kubernetes_io_name":"app.kubernetes.io/name"}` | Log labels to set with values copied from the Kubernetes Pod labels. Format: `<log_label>: <kubernetes_label>`. |
46+
47+
### Pod Discovery
4048

4149
| Key | Type | Default | Description |
4250
|-----|------|---------|-------------|
4351
| excludeNamespaces | list | `[]` | Do not capture logs from any pods in these namespaces. |
52+
| extraDiscoveryRules | string | `""` | Rules to filter pods for log gathering. Only used for "volumes" or "kubernetesApi" gather methods. |
53+
| gatherMethod | string | `"volumes"` | The method to gather pod logs. Options are "volumes", "kubernetesApi", "OpenShiftClusterLogForwarder" (experimental). |
4454
| namespaces | list | `[]` | Only capture logs from pods in these namespaces (`[]` means all namespaces). |
4555

4656
### General settings
@@ -55,11 +65,3 @@ Actual integration testing in a live environment should be done in the main [k8s
5565
| Key | Type | Default | Description |
5666
|-----|------|---------|-------------|
5767
| global.platform | string | `""` | The specific platform for this cluster. Will enable compatibility for some platforms. Supported options: (empty) or "openshift". |
58-
59-
### Other Values
60-
61-
| Key | Type | Default | Description |
62-
|-----|------|---------|-------------|
63-
| extraDiscoveryRules | string | `""` | Rules to filter pods for log gathering. Only used for "volumes" or "kubernetesApi" gather methods. |
64-
| extraLogProcessingStages | string | `""` | Stage blocks to be added to the loki.process component for pod logs. ([docs](https://grafana.com/docs/alloy/latest/reference/components/loki/loki.process/#blocks)) This value is templated so that you can refer to other values from this file. |
65-
| gatherMethod | string | `"volumes"` | The method to gather pod logs. Options are "volumes", "kubernetesApi", "OpenShiftClusterLogForwarder" (experimental). |

charts/feature-pod-logs/templates/_common_pod_discovery.alloy.tpl

+14
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,20 @@ discovery.relabel "filtered_pods" {
3030
replacement = "$1"
3131
target_label = "job"
3232
}
33+
{{- range $label, $podLabel := .Values.labels }}
34+
rule {
35+
source_labels = ["{{ include "pod_label" $podLabel }}"]
36+
regex = "(.+)"
37+
target_label = {{ $label | quote }}
38+
}
39+
{{- end }}
40+
{{- range $label, $podAnnotation := .Values.annotations }}
41+
rule {
42+
source_labels = ["{{ include "pod_annotation" $podAnnotation }}"]
43+
regex = "(.+)"
44+
target_label = {{ $label | quote }}
45+
}
46+
{{- end }}
3347

3448
// set the container runtime as a label
3549
rule {

charts/feature-pod-logs/templates/_helpers.tpl

+13
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,16 @@ If release name contains chart name it will be used as a full name.
1515
{{- end }}
1616
{{- end }}
1717
{{- end }}
18+
19+
{{- define "escape_label" -}}
20+
{{ . | replace "-" "_" | replace "." "_" | replace "/" "_" }}
21+
{{- end }}
22+
23+
{{- define "pod_label" -}}
24+
{{ printf "__meta_kubernetes_pod_label_%s" (include "escape_label" .) }}
25+
{{- end }}
26+
27+
{{- define "pod_annotation" -}}
28+
{{ printf "__meta_kubernetes_pod_annotation_%s" (include "escape_label" .) }}
29+
{{- end }}
30+

charts/feature-pod-logs/tests/default_test.yaml

+11-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,17 @@ tests:
4141
replacement = "$1"
4242
target_label = "job"
4343
}
44-
44+
rule {
45+
source_labels = ["__meta_kubernetes_pod_label_app_kubernetes_io_name"]
46+
regex = "(.+)"
47+
target_label = "app_kubernetes_io_name"
48+
}
49+
rule {
50+
source_labels = ["__meta_kubernetes_pod_annotation_k8s_grafana_com_logs_job"]
51+
regex = "(.+)"
52+
target_label = "job"
53+
}
54+
4555
// set the container runtime as a label
4656
rule {
4757
action = "replace"

charts/feature-pod-logs/values.schema.json

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
"$schema": "http://json-schema.org/schema#",
33
"type": "object",
44
"properties": {
5+
"annotations": {
6+
"type": "object",
7+
"properties": {
8+
"job": {
9+
"type": "string"
10+
}
11+
}
12+
},
513
"deployAsConfigMap": {
614
"type": "boolean"
715
},
@@ -32,6 +40,14 @@
3240
}
3341
}
3442
},
43+
"labels": {
44+
"type": "object",
45+
"properties": {
46+
"app_kubernetes_io_name": {
47+
"type": "string"
48+
}
49+
}
50+
},
3551
"nameOverride": {
3652
"type": "string"
3753
},

charts/feature-pod-logs/values.yaml

+17-2
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,37 @@ global:
1313
platform: ""
1414

1515
# -- The method to gather pod logs. Options are "volumes", "kubernetesApi", "OpenShiftClusterLogForwarder" (experimental).
16+
# @section -- Pod Discovery
1617
gatherMethod: volumes
1718

1819
# -- Only capture logs from pods in these namespaces (`[]` means all namespaces).
19-
# @section -- Logs Scrape: Pod Logs
20+
# @section -- Pod Discovery
2021
namespaces: []
2122

2223
# -- Do not capture logs from any pods in these namespaces.
23-
# @section -- Logs Scrape: Pod Logs
24+
# @section -- Pod Discovery
2425
excludeNamespaces: []
2526

2627
# -- Rules to filter pods for log gathering. Only used for "volumes" or "kubernetesApi" gather methods.
28+
# @section -- Pod Discovery
2729
extraDiscoveryRules: ""
2830

31+
# -- Log labels to set with values copied from the Kubernetes Pod labels.
32+
# Format: `<log_label>: <kubernetes_label>`.
33+
# @section -- Log Processing
34+
labels:
35+
app_kubernetes_io_name: app.kubernetes.io/name
36+
37+
# -- Log labels to set with values copied from the Kubernetes Pod annotations.
38+
# Format: `<log_label>: <kubernetes_annotation>`.
39+
# @section -- Log Processing
40+
annotations:
41+
job: k8s.grafana.com/logs.job
42+
2943
# -- Stage blocks to be added to the loki.process component for pod logs.
3044
# ([docs](https://grafana.com/docs/alloy/latest/reference/components/loki/loki.process/#blocks))
3145
# This value is templated so that you can refer to other values from this file.
46+
# @section -- Log Processing
3247
extraLogProcessingStages: ""
3348

3449
# @ignore

charts/k8s-monitoring/Chart.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ dependencies:
4242
repository: https://grafana.github.io/helm-charts
4343
version: 0.10.0
4444
digest: sha256:c42e09be38582ced6f973de7fd7d2f5d96c1e926e187936e0ee1d7ae295c9e0f
45-
generated: "2024-11-19T10:59:04.581346-06:00"
45+
generated: "2024-11-21T18:59:30.945426-06:00"
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

charts/k8s-monitoring/docs/examples/auth/bearer-token/alloy-logs.alloy

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/auth/bearer-token/output.yaml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/auth/embedded-secrets/alloy-logs.alloy

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/auth/embedded-secrets/output.yaml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/auth/external-secrets/alloy-logs.alloy

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/auth/external-secrets/output.yaml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/collector-storage/alloy-logs.alloy

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/collector-storage/output.yaml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/extra-rules/alloy-logs.alloy

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/extra-rules/output.yaml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/features/cluster-metrics/control-plane-monitoring/alloy-logs.alloy

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/features/cluster-metrics/control-plane-monitoring/output.yaml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

charts/k8s-monitoring/docs/examples/features/integrations/mysql/alloy-logs.alloy

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)