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

Last updated: May 29, 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. In the navigation bar on the left, navigate to the view.

  2. Click on the elipsis in the top right of the selected view. Export view

  3. Click Download and then YAML button 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
  • metrics — Saved metric queries and visualizations
  • failed_checks — Saved alert failure views
  • web_events — Saved web event queries
  • resources — Saved resource views (services, pods, etc.)

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

Further Reading