Skip to main content
GET
/
logs
/
{logId}
/
dashboards
List dashboards associated with a log
curl --request GET \
  --url https://api.eu.bronto.io/logs/{logId}/dashboards \
  --header 'X-BRONTO-API-KEY: <api-key>'
[
  {
    "name": "<string>",
    "dashboard_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "description": "<string>",
    "created": "1711726414",
    "created_by": "John Doe",
    "widgets": [
      {
        "id": "cc5d32d7-2bd5-4ede-b86e-0a06db8db877",
        "name": "5xx errors by service",
        "description": "This widget shows the 5xx errors by service",
        "created_at": 1703112000000,
        "type": "line",
        "metric_ids": [
          "c957e259-7543-465e-b44b-6e3aac07d90a",
          "a86f1faa-6698-4b08-a78b-23608020dfba"
        ],
        "lbm_ids": [
          "c957e259-7543-465e-b44b-6e3aac07d90a",
          "a86f1faa-6698-4b08-a78b-23608020dfba"
        ],
        "widget_ids": [
          "c957e259-7543-465e-b44b-6e3aac07d90a",
          "a86f1faa-6698-4b08-a78b-23608020dfba"
        ],
        "layout": {
          "widget_layouts": [
            {
              "id": "78739235-9aa7-4eca-b7f3-4cf6ee455b8f",
              "x": 1.25,
              "y": 2,
              "w": 20,
              "h": 5
            }
          ]
        },
        "tags": {
          "region": "eu",
          "environment": "production"
        }
      }
    ],
    "layout": {
      "metric_ids": [
        "x",
        "y"
      ]
    },
    "tags": {
      "region": "eu",
      "environment": "production"
    },
    "template_id": "<string>",
    "variables": {}
  }
]

Authorizations

X-BRONTO-API-KEY
string
header
required

Path Parameters

logId
string<uuid>
required

The unique identifier of the log

Response

List of dashboards for the given log

name
string
required

The name of the dashboard.

dashboard_id
string<uuid>

Unique identifier of the dashboard.

description
string

The description of the dashboard.

created
string

The creation timestamp of the dashboard (epoch seconds).

Example:

"1711726414"

created_by
string

The name of the user or API key that created the dashboard.

Example:

"John Doe"

widgets
object[]

The widgets included in this dashboard.

layout
object

Optional layout metadata for the dashboard.

tags
object

A map of key value pairs associated with this log

Example:
{
"region": "eu",
"environment": "production"
}
template_id
string

The ID of the template used to create this dashboard.

variables
object

A map of variable names to their values.