Skip to main content

alerts_enrichments

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

Overview

Namealerts_enrichments
TypeResource
Idazure.alerts_management.alerts_enrichments

Fields

The following fields are returned by SELECT queries:

OK. Returns the enrichments of the specified alert.

NameDatatypeDescription
idstringAzure resource Id
namestringAzure resource name
propertiesobjectProperties of the alert enrichment item.
typestringAzure resource type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectscope, alertIdList the enrichments of an alert. It returns a collection of one object named default.
getselectscope, alertIdGet the enrichments of an alert.

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
alertIdstringUnique ID of an alert instance.
scopestringscope here is resourceId for which alert is created.

SELECT examples

List the enrichments of an alert. It returns a collection of one object named default.

SELECT
id,
name,
properties,
type
FROM azure.alerts_management.alerts_enrichments
WHERE scope = '{{ scope }}' -- required
AND alertId = '{{ alertId }}' -- required
;