Last updated: July 5, 2026
Troubleshooting
Troubleshoot and debug the Dash0 operator.
This guide covers common troubleshooting procedures for the Dash0 operator.
Table of Contents
Create Heap Profiles
The instructions in this section are mainly meant to be used in a shared troubleshooting session with Dash0 support.
Operator Manager Heap Profile
To get a heap profile from the operator manager container:
- Deploy the operator manager with the additional Helm value
operator.pprofPort=1777. - Take note of the namespace the operator is deployed in (default:
dash0-system). - Run
kubectl get pod -n <operator-namespace> -l app.kubernetes.io/component=controllerto get the name of the operator manager pod (usually something likedash0-operator-controller-xxxxxxxxx-xxxxx, but the name depends on the Helm release name). - Using the information from the previous two steps, run
kubectl port-forward -n <operator-namespace> <operator-manager-pod-name> 1777. - In a separate shell, while the
kubectl port-forwardcommand from the previous step is still running, runcurl http://localhost:1777/debug/pprof/heap > dash0-operator-manager-heap.out. - Terminate the
kubectl port-forwardcommand. - Redeploy the operator without the Helm setting
operator.pprofPort=1777.
Collector Daemonset Heap Profile
To get a heap profile from a OpenTelemetry collector daemonset container:
- Deploy the operator manager with the additional Helm value
operator.collectors.enablePprofExtension=true. - Take note of the namespace the operator is deployed in (default:
dash0-system). - Run
kubectl top pod -n <operator-namespace> -l app.kubernetes.io/component=agent-collectorto get the name of a collector pod that has high memory usage (usually something likedash0-operator-opentelemetry-collector-agent-daemonset-xxxxx, but the name depends on the Helm release name). - Using the information from the previous two steps, run
kubectl port-forward -n <operator-namespace> <collector-daemonset-pod-name> 1777. - In a separate shell, while the
kubectl port-forwardcommand from the previous step is still running, runcurl http://localhost:1777/debug/pprof/heap > dash0-daemonset-collector.out. - Terminate the
kubectl port-forwardcommand. - Redeploy the operator without the Helm setting
operator.collectors.enablePprofExtension=true.
Collector Deployment Heap Profile
To get a heap profile from a OpenTelemetry collector deployment container:
- Follow the same steps as for the collector daemonset, but use
-l app.kubernetes.io/component=cluster-metrics-collectorin step (3).
Getting Help
For additional help:
- Review the operator logs:
kubectl logs -n dash0-system -l app.kubernetes.io/component=controller - Contact Dash0 support at support@dash0.com
Related Documentation
- Platform Specific - Platform-specific notes that may help troubleshoot issues
- Configuration - Verify your configuration settings