Skip to main content

monitor_services

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

Overview

Namemonitor_services
TypeResource
Idlinode.monitor.monitor_services

Fields

The following fields are returned by SELECT queries:

Returns a paginated list of metric definitions.

NameDatatypeDescription
labelstringThe full name of Akamai Cloud Computing service. This is used for display purposes in Akamai Cloud Manager. (example: Databases)
service_typestringThe identifier for the Akamai Cloud Computing service. Use this value to call out the service in other Monitor operations in the API. (example: dbaas)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_service_typeselectserviceTypeBeta Returns details for a specific service type.

> 📘
>
> - This operation is beta. Call it using the v4beta path in its URL.
>
> - For more details on the metrics available for each service, see the Metrics reference.

Learn more...

Learn more...
listselectBeta Returns a paginated list of all current supported service types.

> 📘
>
> 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
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 details for a specific service type.

> 📘
>
> - This operation is beta. Call it using the v4beta path in its URL.
>
> - For more details on the metrics available for each service, see the Metrics reference.

Learn more...

Learn more...

SELECT
label,
service_type
FROM linode.monitor.monitor_services
WHERE serviceType = '{{ serviceType }}' -- required
;