Skip to main content
GET
/
metrics
/
dashboards
/
{folderName}
List dashboards in a folder
curl --request GET \
  --url https://v1.api.altostrat.io/metrics/dashboards/{folderName} \
  --header 'Authorization: Bearer <token>'
{
  "folder_name": "radius",
  "dashboards": [
    {
      "uid": "router_system_metrics",
      "slug": "router-system-metrics",
      "title": "Router system metrics",
      "url": "<string>",
      "tags": [
        "<string>"
      ],
      "folder_title": "SDX",
      "query_url": "/metrics/dashboards/router_system_metrics/query",
      "variables": [
        {
          "name": "Site",
          "label": "Site",
          "type": "query",
          "query": "<string>",
          "multi": false,
          "includeAll": false,
          "allValue": null,
          "current": null
        }
      ],
      "panels": [
        {
          "id": 12,
          "title": "CPU load",
          "type": "timeseries",
          "gridPos": {}
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

folderName
string
required

The Grafana folder name.

Example:

"radius"

Response

Dashboards in the requested folder.

folder_name
string
Example:

"radius"

dashboards
object[]