Skip to main content

monitoring_signal_entities

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

Overview

Namemonitoring_signal_entities
TypeResource
Iddatadog.security.monitoring_signal_entities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe signal ID the entities are associated with. (example: AAAAAWgN8Xwgr1vKDQAAAABBV2dOOFh3ZzZobm1mWXJFYTR0OA)
attributesobjectAttributes containing the entities related to the signal.
typestringThe type of the resource. The value should always be entities. (entities) (default: entities, example: entities)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_signal_entitiesselectsignal_idlimitGet the list of entities related to a security signal, captured at the signal's timestamp.

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
signal_idstringThe ID of the signal.
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.
limitinteger (int32)The maximum number of entities to return.

SELECT examples

Get the list of entities related to a security signal, captured at the signal's timestamp.

SELECT
id,
attributes,
type
FROM datadog.security.monitoring_signal_entities
WHERE signal_id = '{{ signal_id }}' -- required
AND limit = '{{ limit }}'
;