Dash0 Raises $110M Series B at $1B Valuation

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:

  1. Navigate to Settings > Notification Channels or click Notification Channels here to go directly to the list.

  2. Select a notification channel and click YAML button in the navigation bar at the top.

    Export notification channel

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
123456789
apiVersion: v1alpha2
kind: Dash0NotificationChannel
metadata:
name: slack-alerts
spec:
type: slack
config:
channel: "#alerts"
webhookUrl: https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXX

Further Reading