Skip to main content

dashboards

Creates, updates, deletes, gets or lists a dashboards resource.

Overview

Namedashboards
TypeResource
Idlinode.monitor.dashboards

Fields

The following fields are returned by SELECT queries:

Returns a dashboard.

NameDatatypeDescription
idintegerThe unique identifier for the dashboard.
createdstring (date-time)When the dashboard was created. (example: 2024-10-10T05:01:58Z)
labelstringThe name of the dashboard. This is used for display purposes in Akamai Cloud Manager. (example: Resource Usage)
service_typestringThe Akamai Cloud Computing service used by this dashboard. (example: dbaas)
typestringThe type of dashboard. Currently, this can only be standard for a dashboard that uses default formatting. (standard) (example: standard)
updatedstring (date-time)When the dashboard was last updated. (example: 2024-10-12T08:15:37Z)
widgetsarrayThe widgets used in the dashboard.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdashboardIdBeta Returns a specific dashboard, based on its unique identifier.

> 📘
>
> This operation is beta. Call it using the v4beta path in its URL.

Learn more...

Learn more...
list_by_service_typeselectserviceTypeBeta Returns all available dashboards for a given service type.

> 📘
>
> This operation is beta. Call it using the v4beta path in its URL.

Learn more...

Learn more...
listselectBeta Returns all available dashboards.

> 📘
>
> This operation is beta. Call it using the v4beta path in its URL.

Learn more...

Learn more...

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
dashboardIdstringThe unique identifier of the dashboard.
serviceTypestringThe Akamai Cloud Computing service being monitored. To see your currently supported services, run the List supported service types operation and store the appropriate service_type.

SELECT examples

Beta Returns a specific dashboard, based on its unique identifier.

> 📘
>
> This operation is beta. Call it using the v4beta path in its URL.

Learn more...

Learn more...

SELECT
id,
created,
label,
service_type,
type,
updated,
widgets
FROM linode.monitor.dashboards
WHERE dashboardId = '{{ dashboardId }}' -- required
;