Skip to main content

error_tracking_issues

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

Overview

Nameerror_tracking_issues
TypeResource
Iddatadog.service_management.error_tracking_issues

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
delete_issue_assigneedeleteissue_idRemove the assignee of an issue by issue_id.

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
issue_idstringThe identifier of the issue. (example: c1726a66-1f64-11ee-b338-da7ad0900002)
sitestringThe Datadog site (region) for your organization, for example datadoghq.com, us3.datadoghq.com, us5.datadoghq.com, ap1.datadoghq.com, ap2.datadoghq.com, datadoghq.eu, ddog-gov.com. Resolved from the DD_SITE environment variable when set. Optional: defaults to datadoghq.com, or the value of the DD_SITE environment variable when set; a WHERE value overrides both.

DELETE examples

Remove the assignee of an issue by issue_id.

DELETE FROM datadog.service_management.error_tracking_issues
WHERE issue_id = '{{ issue_id }}' --required
;