Skip to main content

synthetics_fast_test_results

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

Overview

Namesynthetics_fast_test_results
TypeResource
Iddatadog.monitoring.synthetics_fast_test_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe UUID of the fast test, used as the result identifier. (example: abc12345-1234-1234-1234-abc123456789)
attributesobjectAttributes of the fast test result.
typestringJSON:API type for a fast test result. (result) (default: result, example: result)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_synthetics_fast_test_resultselectid

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
idstringThe UUID of the fast test to retrieve the result for.
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.

SELECT examples

OK

SELECT
id,
attributes,
type
FROM datadog.monitoring.synthetics_fast_test_results
WHERE id = '{{ id }}' -- required
;