monitor_services
Creates, updates, deletes, gets or lists a monitor_services resource.
Overview
| Name | monitor_services |
| Type | Resource |
| Id | linode.monitor.monitor_services |
Fields
The following fields are returned by SELECT queries:
- list_by_service_type
- list
Returns a paginated list of metric definitions.
| Name | Datatype | Description |
|---|---|---|
label | string | The full name of Akamai Cloud Computing service. This is used for display purposes in Akamai Cloud Manager. (example: Databases) |
service_type | string | The identifier for the Akamai Cloud Computing service. Use this value to call out the service in other Monitor operations in the API. (example: dbaas) |
Returns a paginated list of metric definitions.
| Name | Datatype | Description |
|---|---|---|
label | string | The full name of Akamai Cloud Computing service. This is used for display purposes in Akamai Cloud Manager. (example: Databases) |
service_type | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_service_type | select | serviceType | 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... | |
list | select | Beta 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.
| Name | Datatype | Description |
|---|---|---|
serviceType | string | The 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
- list_by_service_type
- list
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
;
Beta 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...
SELECT
label,
service_type
FROM linode.monitor.monitor_services
;