Create Dashboard
appd_create_dashboardCreate AppDynamics dashboards to monitor application performance using metric graphs, health rules, and text widgets.
Instructions
Create a new custom dashboard in AppDynamics.
You can create a blank dashboard and add widgets later using appd_add_widget_to_dashboard, or provide widgets upfront.
Widget types (use exact names):
"TIMESERIES_GRAPH": Time-series line/area chart (needs applicationId + metricPath)
"METRIC_VALUE": Single metric number display (needs applicationId + metricPath)
"HEALTH_LIST": Health rule status list (needs applicationId, entityType like 'POLICY')
"TEXT": Static text label or title (needs text)
"PIE": Pie chart (needs applicationId + metricPath)
"GAUGE": Gauge display (needs applicationId + metricPath)
Grid layout: width max is 12 (full row). Height is in grid units (2-4 typical). Use appd_browse_metric_tree to discover metric paths for widgets.
Args:
name (string): Dashboard name
description (string, optional): Description
height/width (number, optional): Canvas size (default: 768x1024)
widgets (array, optional): Widgets to place on the dashboard
template (boolean, optional): Create as template
Returns: The created dashboard object with its new ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Dashboard name. | |
| width | No | Dashboard canvas width in pixels. Default: 1024. | |
| height | No | Dashboard canvas height in pixels. Default: 768. | |
| widgets | No | Array of widgets to place on the dashboard. Can be empty to create a blank dashboard, then add widgets later with appd_add_widget_to_dashboard. | |
| template | No | If true, create as a template dashboard. | |
| description | No | Dashboard description. |