Import Dashboard from JSON
appd_import_dashboardImport a dashboard from a JSON definition string. Discards the original ID and creates a new dashboard with a fresh, unique ID.
Instructions
Create a new dashboard from a JSON definition string.
Accepts the JSON output of appd_export_dashboard (or any saved dashboard JSON file) and creates a new dashboard from it. The original ID is always discarded — AppDynamics assigns a fresh one.
Typical workflow:
appd_export_dashboard → save JSON to a file
Edit the file if needed (rename, adjust metrics, etc.)
appd_import_dashboard with the file contents → new dashboard created
Args:
dashboardJson (string): Full dashboard JSON (paste contents of an exported file)
dashboardName (string, optional): Override the name from the JSON
Returns: The newly created dashboard with its new ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dashboardJson | Yes | Full dashboard JSON definition — paste the contents of an exported dashboard file. | |
| dashboardName | No | Override the dashboard name from the JSON. |