alerts_enrichments
Creates, updates, deletes, gets or lists a alerts_enrichments
resource.
Overview
Name | alerts_enrichments |
Type | Resource |
Id | azure.alerts_management.alerts_enrichments |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Azure resource Id |
name | string | Azure resource name |
properties | object | Properties of the alert enrichment item. |
type | string | Azure resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | alertId, scope | Get the enrichments of an alert. |
list | SELECT | alertId, scope | List 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 }}';