Skip to main content

alerts_enrichments

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

Overview

Namealerts_enrichments
TypeResource
Idazure.alerts_management.alerts_enrichments

Fields

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

Methods

NameAccessible byRequired ParamsDescription
getSELECTalertId, scopeGet the enrichments of an alert.
listSELECTalertId, scopeList the enrichments of an alert. It returns a collection of one object named default.

SELECT examples

Get the enrichments of an alert.

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