Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
dynatrace avatar

Dt App Dashboards

  • 1.6k installs
  • 119 repo stars
  • Updated July 29, 2026
  • dynatrace/dynatrace-for-ai

dt-app-dashboards is an agent skill for work with dynatrace dashboards - create, modify, query, and analyze dashboard json including tiles, layouts, dql queries, variables, and visualizations.

About

The dt-app-dashboards skill is designed for work with Dynatrace dashboards - create, modify, query, and analyze dashboard JSON including tiles, layouts, DQL queries, variables, and visualizations. Dynatrace Dashboard Skill Overview Dynatrace dashboards are JSON documents stored in the Document Store containing tiles (content/visualizations), layouts (grid positioning), and variables (dynamic query parameters). When to use: Creating, modifying, querying, or analyzing dashboards. Invoke when the user asks about dt app dashboards or related SKILL.md workflows.

  • Tile IDs in tiles must match IDs in layouts.
  • Grid is 24 units wide. Common widths: 24 (full), 12 (half), 6 (quarter).
  • Two tile types: markdown (text content) and data (DQL query + visualization).
  • Load domain skills BEFORE generating queries — do not invent DQL.
  • Validate ALL queries before adding to dashboard.

Dt App Dashboards by the numbers

  • 1,592 all-time installs (skills.sh)
  • +87 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #137 of 1,435 DevOps & CI/CD skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

dt-app-dashboards capabilities & compatibility

Capabilities
tile ids in tiles must match ids in layouts · grid is 24 units wide. common widths: 24 (full), · two tile types: markdown (text content) and data · load domain skills before generating queries — d
From the docs

What dt-app-dashboards says it does

Work with Dynatrace dashboards - create, modify, query, and analyze dashboard JSON including tiles, layouts, DQL queries, variables, and visualizations.
SKILL.md
Work with Dynatrace dashboards - create, modify, query, and analyze dashboard JSON including tiles, layouts, DQL queries, variables, and visualizations.
SKILL.md
npx skills add https://github.com/dynatrace/dynatrace-for-ai --skill dt-app-dashboards

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1.6k
repo stars119
Security audit3 / 3 scanners passed
Last updatedJuly 29, 2026
Repositorydynatrace/dynatrace-for-ai

How do I work with dynatrace dashboards - create, modify, query, and analyze dashboard json including tiles, layouts, dql queries, variables, and visualizations?

Work with Dynatrace dashboards - create, modify, query, and analyze dashboard JSON including tiles, layouts, DQL queries, variables, and visualizations.

Who is it for?

Developers using dt app dashboards workflows documented in SKILL.md.

Skip if: Skip when the task falls outside dt-app-dashboards scope or needs a different stack.

When should I use this skill?

User asks about dt app dashboards or related SKILL.md workflows.

What you get

Completed dt-app-dashboards workflow with documented commands, files, and expected deliverables.

  • Dynatrace dashboard JSON
  • DQL timeseries tile definitions
  • threshold-aware line chart configs

By the numbers

  • Example dashboard JSON uses content version 21

Files

SKILL.mdMarkdownGitHub ↗

Dynatrace Dashboard Skill

Overview

Dynatrace dashboards are JSON documents stored in the Document Store containing tiles (content/visualizations), layouts (grid positioning), and variables (dynamic query parameters).

When to use: Creating, modifying, querying, or analyzing dashboards.

Dashboard JSON Structure

{
  "name": "My Dashboard",
  "type": "dashboard",
  "content": {
    "version": 21,
    "variables": [],
    "tiles": { "<id>": { "type": "data|markdown", ... } },
    "layouts": { "<id>": { "x": 0, "y": 0, "w": 24, "h": 8 } }
  }
}
  • Tile IDs in tiles must match IDs in layouts
  • Grid is 24 units wide. Common widths: 24 (full), 12 (half), 6 (quarter)
  • Two tile types: markdown (text content) and data (DQL query + visualization)

Optional content properties: settings, refreshRate, annotations

Create/Update Workflow (Mandatory Order)

Carefully follow the workflow described in references/create-update.md.

Key rules:

  • Load domain skills BEFORE generating queries — do not invent DQL
  • Validate ALL queries before adding to dashboard
  • No time-range filters in queries unless explicitly requested by user
  • Set name before deploying
  • Updating — ALWAYS download first: dtctl get dashboard <id> -o json --plain > dashboard.json, modify, then deploy the downloaded file. Never reconstruct JSON from scratch or inject an id manually — both silently overwrite any UI edits the user made since last deployment.
  • Deploy with `dtctl apply` — validation runs automatically, and the local file is deleted on success.

Visualization Types

  • Time-series (require timeseries/makeTimeseries): lineChart, areaChart, barChart, bandChart
  • Categorical (summarize ... by:{field}): categoricalBarChart, pieChart, donutChart
  • Single value/gauge (single numeric record): singleValue, meterBar, gauge
  • Tabular (any data shape): table, raw, recordList
  • Distribution/status: histogram, honeycomb
  • Maps: choroplethMap, dotMap, connectionMap, bubbleMap
  • Matrix: heatmap, scatterplot

Required field types per visualization: references/tiles.md

Variables Quick Reference

{ "version": 2, "key": "Service", "type": "query", "visible": true,
  "editable": true, "input": "smartscapeNodes SERVICE | fields name",
  "multiple": false }
  • Single-select: filter service.name == $Service
  • Multi-select: filter in(service.name, array($Service))
  • Types: query (DQL-populated), csv (static list), text (free-form)

Full variable reference: references/variables.md

References

FileWhen to Load
create-update.mdCreating/updating dashboards
tiles.mdTile types, visualization field requirements, settings
variables.mdVariable types, replacement strategies, patterns
analyzing.mdReading dashboards, extracting queries, health assessment

Related skills

How it compares

Choose dt-app-dashboards when you need native Dynatrace DQL dashboard JSON for AI services rather than Grafana panel provisioning skills.

FAQ

What does dt-app-dashboards do?

Work with Dynatrace dashboards - create, modify, query, and analyze dashboard JSON including tiles, layouts, DQL queries, variables, and visualizations.

When should I use dt-app-dashboards?

User asks about dt app dashboards or related SKILL.md workflows.

Is dt-app-dashboards safe to install?

Review the Security Audits panel on this page before installing in production.

DevOps & CI/CDmonitoring

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.