Skip to main content

issues

Creates, updates, deletes, gets or lists an issues resource.

Overview

Nameissues
TypeResource
Idlinode.managed.issues

Fields

The following fields are returned by SELECT queries:

The requested issue.

NameDatatypeDescription
idintegerRead-only This Issue's unique ID.
createdstring (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)
entityobjectRead-only The ticket this Managed Issue opened.
servicesarrayRead-only An array of Managed Service IDs that were affected by this Issue.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_managed_issueselectReturns 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_issuesselectpage, page_sizeReturns 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.

NameDatatypeDescription
pageintegerThe page of a collection to return.
page_sizeintegerThe number of items to return per page.

SELECT examples

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;