Skip to main content

dora_incidents

Creates, updates, deletes, gets or lists a dora_incidents resource.

Overview

Namedora_incidents
TypeResource
Iddatadog.software_delivery.dora_incidents

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
create_doraincidentinsertregion, data__dataNote: This endpoint is deprecated. Please use /api/v2/dora/failure instead.

Use this API endpoint to provide failure data for DORA metrics.

This is necessary for:
- Change Failure Rate
- Time to Restore

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
regionstring(default: datadoghq.com)

INSERT examples

Note: This endpoint is deprecated. Please use /api/v2/dora/failure instead.

Use this API endpoint to provide failure data for DORA metrics.

This is necessary for:
- Change Failure Rate
- Time to Restore

INSERT INTO datadog.software_delivery.dora_incidents (
data__data,
region
)
SELECT
'{{ data }}' /* required */,
'{{ region }}'
RETURNING
data
;