Dash0 Acquires Lumigo to Expand Agentic Observability Across AWS and Serverless

Feb 19, 2026

Contributors

Kubernetes Operator: export and sync to multiple backends simultaneously

Telemetry export and API sync now support multi-cast to any number of backends

Starting with version 0.102.0 of the Dash0 Kubernetes Operator, you can configure any number and combination of backends that best fits your requirements and the operator will ensure the collectors send the data to all of them.

Together with the previously released per-namespace export and API sync configuration, this allows a very flexible routing to different backends.

For example, to send the data from one namespace to two different Dash0 datasets and in addition to a gRPC endpoint, you could use the following exports in your Dash0Monitoring config:

yaml
12345678910111213141516171819202122
apiVersion: operator.dash0.com/v1beta1
kind: Dash0Monitoring
metadata:
name: dash0-monitoring-resource
namespace: some-namespace
spec:
exports:
- dash0:
endpoint: ingress...
dataset: custom-dataset-one
authorization:
...
apiEndpoint: https://api..
- dash0:
endpoint: ingress...
dataset: custom-dataset-two
authorization:
...
apiEndpoint: https://api..
- grpc:
endpoint: ...
...

You can find more details in the operator's documentation.