You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ internal API changes are not present.
10
10
Main (unreleased)
11
11
-----------------
12
12
13
-
v1.12.0-rc.1
13
+
v1.12.0-rc.2
14
14
-----------------
15
15
16
16
### Breaking changes
@@ -94,7 +94,7 @@ v1.12.0-rc.1
94
94
95
95
-`prometheus.exporter.postgres` dependency has been updated to v0.18.1. This includes new `stat_progress_vacuum` and `buffercache_summary` collectors, as well as other bugfixes and enhancements. (@cristiangreco)
96
96
97
-
- Update Beyla component to 2.7.4. (@grcevski)
97
+
- Update Beyla component to 2.7.8. (@grcevski)
98
98
99
99
- Support delimiters in `stage.luhn`. (@dehaansa)
100
100
@@ -115,6 +115,8 @@ v1.12.0-rc.1
115
115
116
116
-`kubernetes.discovery` Add support for attaching namespace metadata. (@kgeckhart)
117
117
118
+
- Add `meta_cache_address` to `beyla.ebpf` component. (@skl)
119
+
118
120
### Bugfixes
119
121
120
122
- Stop `loki.source.kubernetes` discarding log lines with duplicate timestamps. (@ciaranj)
Copy file name to clipboardExpand all lines: docs/sources/reference/components/beyla/beyla.ebpf.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -146,6 +146,7 @@ This `kubernetes` block configures the decorating of the metrics and traces with
146
146
|`enable`|`string`| Enable the Kubernetes metadata decoration. |`autodetect`| no |
147
147
|`informers_resync_period`|`duration`| Period for Kubernetes informers resynchronization. |`"30m"`| no |
148
148
|`informers_sync_timeout`|`duration`| Timeout for Kubernetes informers synchronization. |`"30s"`| no |
149
+
|`meta_cache_address`|`string`| Address of the Kubernetes metadata cache service. |`""`| no |
149
150
|`meta_restrict_local_node`|`bool`| Restrict Kubernetes metadata collection to local node. |`false`| no |
150
151
151
152
If `cluster_name` isn't set, Beyla tries to detect the cluster name from the Kubernetes API.
@@ -534,6 +535,8 @@ The `metrics` block configures which metrics Beyla collects.
534
535
|`allow_service_graph_self_references`|`bool`| Allow service graph metrics to reference the same service. |`false`| no |
535
536
|`features`|`list(string)`| List of features to enable for the metrics. |`["application"]`| no |
536
537
|`instrumentations`|`list(string)`| List of instrumentations to enable for the metrics. |`["*"]`| no |
538
+
|`extra_resource_labels`|`list(string)`| List of OTEL resource labels to include on `target_info`. |`[]`| no |
539
+
|`extra_span_resource_labels`|`list(string)`| List of OTEL resource labels to include on span metrics. |`["k8s.cluster.name", "k8s.namespace.name", "service.version", "deployment.environment"]`| no |
537
540
538
541
`features` is a list of features to enable for the metrics. The following features are available:
539
542
@@ -558,6 +561,20 @@ The `metrics` block configures which metrics Beyla collects.
558
561
*`redis` enables the collection of Redis client/server database metrics.
559
562
*`sql` enables the collection of SQL database client call metrics.
560
563
564
+
`extra_resource_labels` is a list of OTEL resource labels, supplied through the `OTEL_RESOURCE_ATTRIBUTES` environment variable
565
+
on the service, that you want to include on the `target_info` metric.
566
+
567
+
`extra_span_resource_labels` is a list of OTEL resource labels, supplied through the `OTEL_RESOURCE_ATTRIBUTES` environment variable
568
+
on the service, that you want to include on the span metrics. The default list includes:
569
+
570
+
*`k8s.cluster.name`
571
+
*`k8s.namespace.name`
572
+
*`service.version`
573
+
*`deployment.environment`
574
+
575
+
The default list of `extra_span_resource_labels` is set to match the defaults chosen by Application Observability plugin in
576
+
Grafana Cloud.
577
+
561
578
#### `network` metrics
562
579
563
580
The `network` block configures network metrics options for Beyla. You must append `network` to the `features` list in the `metrics` block to enable network metrics.
0 commit comments