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

Last updated: June 19, 2026

Export Views

Build views visually in Dash0, then export them as YAML for version control and deployment.

Once you have identified an existing view, or created a new one, do the following:

  1. Navigate to the view panel of the Log Explorer, Trace Explorer, or Web Events Explorer.

  2. Click on the ellipsis in the top right of the selected view.

    Export view

  3. Click Download and then YAML to download the view.

Export Format

The exported YAML follows the Dash0View format:

yaml
1234567891011121314151617
kind: Dash0View
metadata:
name: error-logs
spec:
type: logs
display:
name: Error Logs
description: All error-level logs from production services
groupBy:
- service.name
filter:
- key: severity
operator: equals
value: ERROR
- key: k8s.namespace.name
operator: equals
value: production

View Types

Views can be created for different telemetry types:

  • logs — Saved log queries and filters
  • spans — Saved trace queries and span filters
  • web_events — Saved web event queries

Each view type has its own schema and supported filters appropriate for the telemetry type.

Further Reading