Skip to main content

alerts_summaries

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

Overview

Namealerts_summaries
TypeResource
Idazure.alerts_management.alerts_summaries

Fields

NameDatatypeDescription
idtextAzure resource Id
nametextAzure resource name
groupbytextfield from the properties object
groupedbytextfield from the properties object
scopetextfield from the properties object
smart_groups_counttextfield from the properties object
totaltextfield from the properties object
typetextAzure resource type
valuestextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTgroupby, scopeGet a summarized count of your alerts grouped by various parameters (e.g. grouping by 'Severity' returns the count of alerts for each severity).

SELECT examples

Get a summarized count of your alerts grouped by various parameters (e.g. grouping by 'Severity' returns the count of alerts for each severity).

SELECT
id,
name,
groupby,
groupedby,
scope,
smart_groups_count,
total,
type,
values
FROM azure.alerts_management.vw_alerts_summaries
WHERE groupby = '{{ groupby }}'
AND scope = '{{ scope }}';