issues
Creates, updates, deletes, gets or lists an issues resource.
Overview
| Name | issues |
| Type | Resource |
| Id | linode.managed.issues |
Fields
The following fields are returned by SELECT queries:
- get
- list
The requested issue.
| Name | Datatype | Description |
|---|---|---|
id | integer | Read-only This Issue's unique ID. |
created | string (date-time) | Read-only When this Issue was created. Issues are created in response to issues detected with Managed Services, so this is also when the Issue was detected. (example: 2018-01-01T00:01:01) |
entity | object | Read-only The ticket this Managed Issue opened. |
services | array | Read-only An array of Managed Service IDs that were affected by this Issue. |
A paginated list of open or ongoing Managed Issues.
| Name | Datatype | Description |
|---|---|---|
id | integer | Read-only This Issue's unique ID. |
created | string (date-time) | Read-only When this Issue was created. Issues are created in response to issues detected with Managed Services, so this is also when the Issue was detected. (example: 2018-01-01T00:01:01) |
entity | object | Read-only The ticket this Managed Issue opened. |
services | array | Read-only An array of Managed Service IDs that were affected by this Issue. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | issueId | Returns a single issue affecting one of your service monitors. This operation can only be accessed by the unrestricted users of an account. Learn more... Learn more... | |
list | select | page, page_size | Returns a paginated list of recent and ongoing issues detected on your service monitors. This operation can only be accessed by the unrestricted users of an account. 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 |
|---|---|---|
issueId | string | The Issue to look up. |
page | integer | The page of a collection to return. |
page_size | integer | The number of items to return per page. |
SELECT examples
- get
- list
Returns a single issue affecting one of your service monitors.
This operation can only be accessed by the unrestricted users of an account.
Learn more...
Learn more...
SELECT
id,
created,
entity,
services
FROM linode.managed.issues
WHERE issueId = '{{ issueId }}' -- required
;
Returns a paginated list of recent and ongoing issues detected on your service monitors.
This operation can only be accessed by the unrestricted users of an account.
Learn more...
Learn more...
SELECT
id,
created,
entity,
services
FROM linode.managed.issues
WHERE page = '{{ page }}'
AND page_size = '{{ page_size }}'
;