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_managed_issue
- get_managed_issues
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. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get_managed_issue | select | Returns a single Issue that is impacting or did impact one of your Managed Services. This operation can only be accessed by the unrestricted users of an account. Learn more... Learn more... | ||
get_managed_issues | select | page , page_size | Returns a paginated list of recent and ongoing issues detected on your Managed Services. 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 |
---|---|---|
page | integer | The page of a collection to return. |
page_size | integer | The number of items to return per page. |
SELECT
examples
- get_managed_issue
- get_managed_issues
Returns a single Issue that is impacting or did impact one of your Managed Services.
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;
Returns a paginated list of recent and ongoing issues detected on your Managed Services.
This operation can only be accessed by the unrestricted users of an account.
Learn more...
Learn more...
SELECT
data,
page,
pages,
results
FROM linode.managed.issues
WHERE page = '{{ page }}'
AND page_size = '{{ page_size }}';