Dynatrace Notebook Skill
Overview
Dynatrace notebooks are JSON documents stored in the Document Store containing an ordered array of sections — markdown blocks for narrative and dql blocks for DQL queries with visualizations. Sections render top-to-bottom in array order.
When to use: Creating, modifying, querying, or analyzing notebooks.
Notebook JSON Structure
{
"name": "My Notebook",
"type": "notebook",
"content": {
"version": "7",
"defaultTimeframe": { "from": "now()-2h", "to": "now()" },
"sections": [
{ "id": "1", "type": "markdown", "markdown": "# Title" },
{
"id": "2", "type": "dql", "title": "Query Section", "showInput": true,
"state": {
"input": { "value": "fetch logs | summarize count()" },
"visualization": "table",
"visualizationSettings": { "autoSelectVisualization": true, "chartSettings": {} },
"querySettings": {
"maxResultRecords": 1000, "defaultScanLimitGbytes": 500,
"maxResultMegaBytes": 1, "defaultSamplingRatio": 10, "enableSampling": false
}
}
}
]
}
}
- Sections render in array order.
- Section types:
markdown, dql. (function exists but is rare.)
- Use string-int IDs (
"1", "2", …); UUIDs are also accepted.
content.defaultTimeframe sets the default timeframe; each section can override via section.state.input.timeframe. Hardcoded time filters in DQL are allowed.
Optional content properties: defaultSegments.
Reading & Analyzing
Fetch full content with dtctl get notebook <id> -o json --plain (describe returns metadata only), then inspect the JSON to discover its available properties. Carefully read references/analyzing.md before analyzing.
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 section queries before adding to the notebook.
- Set
name before deploying.
- Prefer
autoSelectVisualization: true in visualizationSettings unless the user requested a specific visualization type — when false, state.visualization must be set explicitly.
- Updating — ALWAYS download first:
dtctl get notebook <id> -o json --plain > notebook.json, modify, then deploy the downloaded file. Never reconstruct JSON from scratch or inject an id manually — both silently overwrite 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
Notebooks support a subset of Dynatrace visualizations:
- Time-series (require
timeseries/makeTimeseries): lineChart, areaChart, barChart, bandChart
- Categorical (
summarize ... by:{field}): categoricalBarChart, pieChart, donutChart
- Single value / gauge / meter:
singleValue, meterBar, gauge
- Tabular (any data shape):
table, raw, recordView
- Distribution/status:
histogram, honeycomb
- Geographic maps:
choropleth, dotMap, connectionMap, bubbleMap
- Matrix/correlation:
heatmap, scatterplot
Required field types per visualization: references/sections.md.
References
| File |
When to Load |
| create-update.md |
Creating/updating notebooks |
| sections.md |
Section types, visualization field requirements, settings |
| analyzing.md |
Reading notebooks, extracting queries, purpose identification |
1---2name: dt-app-notebooks3description: Work with Dynatrace notebooks - create, modify, query, and analyze notebook JSON including sections, DQL queries, and visualizations.4license: Apache-2.05---67# Dynatrace Notebook Skill89## Overview1011Dynatrace notebooks are JSON documents stored in the Document Store containing an ordered array of **sections** — markdown blocks for narrative and `dql` blocks for DQL queries with visualizations. Sections render top-to-bottom in array order.1213**When to use:** Creating, modifying, querying, or analyzing notebooks.1415## Notebook JSON Structure1617```json18{19 "name": "My Notebook",20 "type": "notebook",21 "content": {22 "version": "7",23 "defaultTimeframe": { "from": "now()-2h", "to": "now()" },24 "sections": [25 { "id": "1", "type": "markdown", "markdown": "# Title" },26 {27 "id": "2", "type": "dql", "title": "Query Section", "showInput": true,28 "state": {29 "input": { "value": "fetch logs | summarize count()" },30 "visualization": "table",31 "visualizationSettings": { "autoSelectVisualization": true, "chartSettings": {} },32 "querySettings": {33 "maxResultRecords": 1000, "defaultScanLimitGbytes": 500,34 "maxResultMegaBytes": 1, "defaultSamplingRatio": 10, "enableSampling": false35 }36 }37 }38 ]39 }40}41```4243- Sections render in array order.44- Section types: `markdown`, `dql`. (`function` exists but is rare.)45- Use string-int IDs (`"1"`, `"2"`, …); UUIDs are also accepted.46- `content.defaultTimeframe` sets the default timeframe; each section can override via `section.state.input.timeframe`. Hardcoded time filters in DQL are allowed.4748**Optional content properties:** `defaultSegments`.4950## Reading & Analyzing5152Fetch full content with `dtctl get notebook <id> -o json --plain` (`describe` returns metadata only), then inspect the JSON to discover its available properties. Carefully read [references/analyzing.md](references/analyzing.md) before analyzing.5354## Create/Update Workflow (Mandatory Order)5556Carefully follow the workflow described in [references/create-update.md](references/create-update.md).5758**Key rules:**59- Load domain skills BEFORE generating queries — do not invent DQL.60- Validate ALL section queries before adding to the notebook.61- Set `name` before deploying.62- **Prefer `autoSelectVisualization: true`** in `visualizationSettings` unless the user requested a specific visualization type — when `false`, `state.visualization` must be set explicitly.63- **Updating — ALWAYS download first:** `dtctl get notebook <id> -o json --plain > notebook.json`, modify, then deploy the downloaded file. Never reconstruct JSON from scratch or inject an `id` manually — both silently overwrite UI edits the user made since last deployment.64- **Deploy with `dtctl apply`** — validation runs automatically, and the local file is deleted on success.6566## Visualization Types6768Notebooks support a subset of Dynatrace visualizations:6970- **Time-series** (require `timeseries`/`makeTimeseries`): `lineChart`, `areaChart`, `barChart`, `bandChart`71- **Categorical** (`summarize ... by:{field}`): `categoricalBarChart`, `pieChart`, `donutChart`72- **Single value / gauge / meter**: `singleValue`, `meterBar`, `gauge`73- **Tabular** (any data shape): `table`, `raw`, `recordView`74- **Distribution/status**: `histogram`, `honeycomb`75- **Geographic maps**: `choropleth`, `dotMap`, `connectionMap`, `bubbleMap`76- **Matrix/correlation**: `heatmap`, `scatterplot`7778Required field types per visualization: [references/sections.md](references/sections.md).7980## References8182| File | When to Load |83|------|-------------|84| [create-update.md](references/create-update.md) | Creating/updating notebooks |85| [sections.md](references/sections.md) | Section types, visualization field requirements, settings |86| [analyzing.md](references/analyzing.md) | Reading notebooks, extracting queries, purpose identification |