After your extension starts sending data to Dynatrace, you can create a custom dashboard, export its definition to a JSON file, and add the JSON to your extension archive.
If you're using the Dashboards app, follow these procedures.
You can export a dashboard definition through the Dynatrace web UI.
To download (export) a dashboard from the Dashboards side panel
Go to Dashboards.
In Last opened by you, hover over the name of the dashboard you want to export and select Download from the menu. The dashboard is downloaded to a local JSON file that you can upload.
If your dashboard isn't listed in Last opened by you, select All dashboards to display a table of all dashboards that you can access (your dashboards or dashboards shared with you). From there, you can find the dashboard and select Download from the menu.
To download (export) the currently displayed dashboard as JSON
At the top of the dashboard, open the menu to the right of the dashboard name.
Select Download from the menu.
The definition of the current dashboard is downloaded to a local JSON file.
After you create a dashboard that uses your extension data, and you export the dashboard JSON as described earlier, you can add the dashboard to your extension package.
Add the JSON to the extension package.
extension.zip│ extension.yaml│└───alerts│ | alert.json│└───documents│ mydashboard.json
Declare the JSON in the extension YAML file.
Example:
documents:dashboards:- displayName: "My Dashboard"path: "documents/mydashboard.json"
Upload the extension to the Dynatrace environment.
Your dashboard is now available in Dashboards.
You can also access the dashboard from the Extensions app.
Go to Extensions.
Select your extension.
On the Configure tab, select Extension content.
DOCUMENT_DASHBOARD
.DOCUMENT_DASHBOARD
to list only dashboards.If you're using Dashboards Classic, follow these procedures.
After your extension starts sending data to Dynatrace, you can create a custom dashboard and then export its definition to a JSON file and add it to your extension archive. You can export a dashboard definition through the Dynatrace web UI or Dynatrace API.
id
parameter (for example, id=d996b25e-593c-4213-8ad3-c87319a8830a
) and save the parameter value.curl -X GET "https://{env-id}.live.dynatrace.com/api/config/v1/dashboards/{dashboard-id}" \-H "accept: application/json; charset=utf-8" \-H "Authorization: Api-Token `{api-token}"
{env-id}
with your Environment ID.{api-token}
with an API token that has the required permissions.{dashboard-id}
with the dashboard identifier you determined in the previous step.Add your dashboard JSON file to your extension package and reference it in your extension YAML file.
For the following package structure:
extension.zip│ extension.yaml│└───alerts│ | alert.json│└───dashboards│ dashboard.json
Use the following reference in the top level of your YAML file:
dashboards:- path: dashboards/dashboard.jsonalerts:- path: alerts/alert.json