alert_channels
Creates, updates, deletes, gets or lists an alert_channels resource.
Overview
| Name | alert_channels |
| Type | Resource |
| Id | linode.monitor.alert_channels |
Fields
The following fields are returned by SELECT queries:
- list
Returns a paginated list of alerts channels.
| Name | Datatype | Description |
|---|---|---|
id | integer | Filterable The unique identifier for the alert channel. |
alerts | array | Details about the alerts where you've applied this alert channel. |
channel_type | string | The type of notification used with the alert channel. Currently, only email is supported. (email) (example: email) |
content | object | The configuration of the alert channel. |
created | string (date-time) | When the alert channel was created. (example: 2025-03-20 01:41:09) |
created_by | string | For a user alert channel, this is the user on your account that created it. For a system alert channel, this value is returned as system. > 📘 > > Currently, only system alert channels are supported for use. This value will always return a value of system. (example: system) |
label | string | Filterable The name of the alert channel, used to display it in Akamai Cloud Manager. (example: Read-Write Channel) |
type | string | The type of alert channel. This can be either system for a channel provided by Akamai, or user for one you've created. > 📘 > > Currently, only system alert channels are supported for use. This value will always return a value of system. (system, user) (example: system) |
updated | string (date-time) | When the alert channel was last updated. This is the same as created if the channel hasn't been updated. (example: 2025-03-20 01:41:09) |
updated_by | string | For a user alert channel, this is the user on your account that last updated it. For a system alert channel, this is returned as system. If it hasn't been updated, this value is the same as created_by. > 📘 > > Currently, only system alert channels are supported for use. This value will always return a value of system. (example: system) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | Beta Returns all of the monitoring alert channels available to your user. > 📘 > > - This operation is beta. Call it using the v4beta path in its URL.> > - Filtering is supported for specific objects, labeled as Filterable. However, only the +and and +or operators are supported, and you can't nest filter operators. OAuth scopes.<br /> monitor:read_only<br /> 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 |
|---|
SELECT examples
- list
Beta Returns all of the monitoring alert channels available to your user.
> 📘
>
> - This operation is beta. Call it using the v4beta path in its URL.
>
> - Filtering is supported for specific objects, labeled as Filterable. However, only the +and and +or operators are supported, and you can't nest filter operators. OAuth scopes.
<br /> monitor:read_only<br />
Learn more...
-
Learn more...
SELECT
id,
alerts,
channel_type,
content,
created,
created_by,
label,
type,
updated,
updated_by
FROM linode.monitor.alert_channels
;