Dash0 Acquires Lumigo to Expand Agentic Observability Across AWS and Serverless

Deeplink URLs

Deeplink URLs provide direct access to specific Dash0 views with pre-configured parameters. Any view can be shared as a URL that automatically applies filters, time ranges, and other settings when opened.

Create URLs

Deeplink URLs can be created using different workflows:

  1. Press CMD+SHIFT+D from any feature
  2. Open the command palette with CMD+K and search for Create URL with query parameters

All methods open the URL preview, allowing verification of the parameters included in the Deeplink URL. The supported parameters for each feature are prefilled with the app's current state to help bridge the gap from the information shown in Dash0’s UI to the URL.

deeplink creation modal

The Deeplink URLs have the following structure:
https://app.dash0.com/goto/{feature}?parameter1=value1&parameter2=value2

All parameters are optional unless specified otherwise.

Type of parameters

Time Range
Uses the same time picker syntax:

from=now-30m&to=now

Absolute timestamps are also supported:

from=2025-12-08T15:26:44.000Z&to=2025-12-08T15:56:44.000Z

Filters

Filters use the same filtering syntax as the Dash0 UI, formatted as JSON with multiple filters:

filter=[{"key":"service.name","operator":"is","value":"checkout"}, {"key":"otel.span.status.code","operator":"is","value":"ERROR"}]

All supported operators by the UI are supported as URL parameters for Deeplinks.

Supported operators: is, is_not, contains, does_not_contain, matches, does_not_match, starts_with, does_not_start_with, ends_with, does_not_end_with, gt,
lt, gte, lte, is_set, is_not_set, is_one_of, is_not_one_of


Dashboard Variables

For dashboards with variables:

variables={"text_var":"text","list_var":["value1","value2"]}

Tabs
Many features support tab navigation:

tab=triage&analysis_method=status-code


Note: Some tabs require additional parameters. For example, the triage tab accepts analysis_method (attribute-values or status-code), and the groups tab requires group_by. Use the URL builder to ensure all required parameters are included.

Other common tabs: table, groups, patterns, overview, web-vitals, sessions


Other parameters

Each individual feature has a specific subset of features to access a specific view, asset (dashboards, check rules), or resources. As we constantly extend this list of parameters, check each feature in Dash0 directly to find out what parameters are available. The URL builder shows all available parameters for the active feature.

Feature Paths & Parameters

All features support global parameters: from, to, dataset, org, sampling

Data Explorers

These features support: filter, view_id, tab, group_by, analysis_method

FeaturePathAdditional Parameters
Traces Explorer/goto/traces/explorertrace_id, span_id
Logs Explorer/goto/logs
Web Events/goto/web-events/explorer

Metrics

FeaturePathParameters
Metrics Explorer/goto/metrics/explorerfilter, metric_name, metric_type
Metrics Query Builder/goto/metrics/query-builder

Dashboards

FeaturePathParameters
Dashboards/goto/dashboardsdashboard_id (required), version, variables

Services & Resources

FeaturePathParameters
Services Map/goto/services/mapfilter, fit_to
Services Catalog/goto/services/catalog
Resources Map/goto/resources/mapfilter, fit_to
Resources Table/goto/resources/tablefilter, view_id, variables

Websites

FeaturePathParameters
Websites/goto/websiteswebsite, tabl, filter, session_id, variables

Alerting

FeaturePathParameters
Synthetics/goto/alerting/syntheticscheck_id
Check Rules/goto/alerting/check-rulescheck_rule_id
Failed Checks/goto/alerting/failed-checksfilter, check_id

Agent0

FeaturePathParameters
Agent0/goto/agent0thread_id, iniital_prompt, auto_submit

Settings

FeaturePathParameters
Members/goto/settings/memberssearch
Teams/goto/settings/teamsteam_id
Auth Tokens/goto/settings/auth-tokensauth_token_id
Datasets/goto/settings/datasetsdataset_slug
Notifications/goto/settings/notificationschannel_id
Endpoints/goto/settings/endpointsendpoint_type
Billing/goto/settings/billing
Audit Logs/goto/settings/audit-logs

Examples

Filter traces by service name

https://app.dash0.com/goto/traces/explorer?filter=[{"key":"service.name","operator":"is","value":"checkout"}]&from=now-1h&to=now

Filter logs by level and service

https://app.dash0.com/goto/logs?filter=[{"key":"log.level","operator":"is","value":"ERROR"},{"key":"service.name","operator":"is","value":"api"}]

Open a specific trace

https://app.dash0.com/goto/traces/explorer?traceid=abc123def456&span_id=xyz

Open a dashboard with variables

https://app.dash0.com/goto/dashboards?dashboard_id=95a1dddc-8837-469f-87d3-782aa4db9690&variables={"environment":"production"}

Group logs by service name

https://app.dash0.com/goto/logs?tab=groups&group_by=["service.name"]

Focus on a service in the map

https://app.dash0.com/goto/services/map?fit_to={"service.name":"api-gateway","service.namespace":"production"}

Error Handling

Invalid or inaccessible deeplinks renders a detailed error, which displays:

  • List of URL parameters and their values.
  • Identification of invalid parameters.

Common errors include invalid parameter values, missing required parameters, or insufficient permissions.

deeplink validation errors

URL Encoding

The URL builder provides encoded and unencoded formats via the Encoded toggle. Both formats are accepted – most modern browsers automatically encode unencoded URLs when accessed.

FAQs

Why aren’t filters validated in error handling?

Filters that result in no data aren’t considered an error, as a filter could throw no results for a combination of valid values with a time range without underlying telemetry. To resolve these issues, modify the filter values in the feature and fix the Deeplink URL to avoid future problems.

Last updated: February 4, 2026