threat_intelligence_indicator_metrics
Creates, updates, deletes, gets or lists a threat_intelligence_indicator_metrics resource.
Overview
| Name | threat_intelligence_indicator_metrics |
| Type | Resource |
| Id | azure.sentinel.threat_intelligence_indicator_metrics |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
properties | object | Threat intelligence metrics. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, workspaceName | Get 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.
| Name | Datatype | Description |
|---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of the workspace. |
SELECT examples
- list
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
;