Dashboard

Health and Performance

High-level overview of application health and performance metrics.

← Back to dashboards

Panel preview

Health and Performance

Refreshes ~ every 300s
Unable to load chart data: Log Analytics query failed (401): {"error":{"message":"Valid authentication was not provided","code":"AuthorizationRequiredError","correlationId":"ba2c1a48-8b0d-4a40-b9b6-f6de2feec83c"}}

Configuration

Update metadata, KQL queries, or embed links.

Shown in the dashboards table and metadata sidebar.

Charts/logs require a KQL query; embed panels expect an iframe URL; links show a CTA that opens in a new tab.

Used for quick filtering. Example: telemetry,prod,errors.

Provide secure https:// URLs only. Required when “Embed” panel type is selected.

Used for “Link” panels to launch full dashboards in a new tab.

Required for chart + log panels. We run this via Log Analytics with the configured workspace.

Supports Markdown + GFM. Use the preview to render Leaf-friendly HTML.

Need to embed images in Markdown?

Upload here and we'll copy the URL to your clipboard.

Danger zone

Deleting a dashboard removes it from Contentlayer and GitHub. This cannot be undone.

Metadata

Slug
health-and-performance
Panel type
chart
Tags
telemetryperformancehealth

KQL query

requests
| summarize
    request_count=count(),
    avg_duration=avg(duration),
    p95_duration=percentile(duration, 95)
  by bin(timestamp, 1h)
| order by timestamp asc

Notes

This dashboard provides a high-level overview of the application's health and performance. It shows the request rate, average request duration, and the 95th percentile of request duration over time.