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.sentinel.threat_intelligence_indicator_metrics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
propertiesobjectThreat intelligence metrics.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, workspaceNameGet 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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringThe name of the workspace.

SELECT examples

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

SELECT
properties
FROM azure.sentinel.threat_intelligence_indicator_metrics
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
;