Skip to main content
Monitoring & Collection/Grafana Integration
GETGrafanaSince 1.0SynchronousAuth Required

ListDashboardTemplates

List all available Grafana dashboard templates organized by category

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Request Inputs

This API requires no request parameters.

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    Collection of result items

    Example: (nested array)

    • idString

      Unique identifier of the dashboard template

      Example: tpl-vm-overview

    • nameString

      Display name of the template

      Example: VM Overview Dashboard

    • categoryString

      Category of the template (e.g. compute, network, storage)

      Example: compute

    • descriptionString

      Description of the template's purpose and included panels

      Example: Provides CPU, memory, and disk panels for all VMs in a cluster

    • versionString

      Version of the template

      Example: 1.2.0

  • totalInteger

    Total number of available templates

    Example: 10

  • limitInteger

    Page size limit

    Example: 20

  • offsetInteger

    Pagination offset

    Example: 20

Endpoint

GET/api/v1/monitoring/grafana/dashboard-templates

/api/v1/monitoring/grafana/dashboard-templates

Operation ID

ListDashboardTemplates

Permalink

Request Example

curl -X GET '{host}/api/v1/monitoring/grafana/dashboard-templates' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 10,
  "limit": 20,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history