Skip to main content

threat_intelligence_indicator_metrics

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

Overview

Namethreat_intelligence_indicator_metrics
TypeResource
Idazure.security_insight.threat_intelligence_indicator_metrics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
lastUpdatedTimeUtcstringLast updated indicator metric.
patternTypeMetricsarrayPattern type metrics.
sourceMetricsarraySource metrics.
threatTypeMetricsarrayThreat type metrics.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, workspace_name, subscription_idGet threat intelligence indicators metrics (Indicators counts by Type, Threat Type, Source).

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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
workspace_namestringThe name of the monitor workspace. Required.

SELECT examples

Get threat intelligence indicators metrics (Indicators counts by Type, Threat Type, Source).

SELECT
lastUpdatedTimeUtc,
patternTypeMetrics,
sourceMetrics,
threatTypeMetrics
FROM azure.security_insight.threat_intelligence_indicator_metrics
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;