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

Last updated: June 9, 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 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
123456789101112131415
apiVersion: v1alpha2
kind: Dash0NotificationChannel
metadata:
name: platform-team-slack
spec:
type: slack_bot
config:
channel: "#platform-team"
teamId: T04QG2LAK7X
frequency: 6h0m0s
routing:
filters:
- - key: team
operator: is
value: platform

Further Reading