Dashboard

App Insights – Live Errors

Latest warnings/errors from traces and exceptions tables.

← Back to dashboards

Panel preview

App Insights – Live Errors

Refreshes ~ every 60s
Refreshing…
Logs unavailable.

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
app-insights-live-logs
Panel type
logs
Tags
telemetryerrors

KQL query

union isfuzzy=true
  (traces | extend SourceTable = "traces"),
  (exceptions | extend SourceTable = "exceptions", message = tostring(details))
| where severityLevel >= 3
| project timestamp, message, severityLevel, operation_Name, SourceTable
| order by timestamp desc
| take 200

Notes

Keep this panel pinned to monitor live warnings/errors from Application Insights. Use the search box to filter by keyword or operation.