Last updated: May 29, 2026
Export Notification Channels
Build notification channels visually in Dash0, then export them as YAML for version control and deployment.
Once you have created notification channels as defined in Set Up Notification Channels, do the following:
-
Navigate to Settings > Notification Channels or click Notification Channels here to go directly to the list.
-
Select a notification channel and click YAML button in the navigation bar at the top.
Export Format
The exported YAML follows the Dash0NotificationChannel format. The spec.type field selects the channel type (one of the supported integrations), and spec.config holds the type-specific settings such as webhook URLs or Slack channel names. Notification channels are organization-level resources, so no dataset is required:
yaml
123456789apiVersion: v1alpha2kind: Dash0NotificationChannelmetadata:name: slack-alertsspec:type: slackconfig:channel: "#alerts"webhookUrl: https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXX
Further Reading
- About Notification Channels — Create and configure notification channels in the Dash0 UI.
- Manage Notification Channels as Code — Deploy notification channels using the Dash0 Operator for Kubernetes, the Dash0 Terraform Provider, or the Dash0 CLI.
