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. Currently, only the Managed Databases (dbaas) service is supported. (example: dbaas)
typestringThe type of dashboard. Currently, this can only be standard for a dashboard that uses default formatting. (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
get_dashboards_by_idselectBeta Returns a specific dashboard, based on its unique ID. You can run the List dashboards operation to see the ID for all dashboards.

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

Learn more...

Learn more...
get_dashboardsselectBeta Returns all available dashboards for a given service type. Include the appropriate service_type as a path parameter.

> 📘
>
> - This operation is beta. Call it using the v4beta path in its URL.
>
> - Currently, only the Managed Databases (dbaas) service type is supported.

Learn more...

Learn more...
get_dashboards_allselectBeta 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

SELECT examples

Beta Returns a specific dashboard, based on its unique ID. You can run the List dashboards operation to see the ID for all dashboards.

> 📘
>
> 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;