How I can see criticality level of subscription in Azure sentinel

Nishit 60 Reputation points
2024-11-04T06:40:27.5366667+00:00

Generally, we can configure criticality level of subscription in Azure portal so how we can see such information in Azure sentinel logs.

Microsoft Sentinel
Microsoft Sentinel
A scalable, cloud-native solution for security information event management and security orchestration automated response. Previously known as Azure Sentinel.
1,157 questions
{count} votes

Accepted answer
  1. Clive Watson 6,521 Reputation points MVP
    2024-11-04T14:08:46.3833333+00:00

    That wont work, at least not in the way you want, Tags are stored in the Azure resource Graph (ARG), so you can check them in ARG (also using KQL). You might get lucky and find a change / add of a tag in the AzureActivity log, but if say the resource was created 2years ago, you cant do that in your Alert Rule given the 14day look back.
    ARG doesnt have this restriction, and you can see all resources.

    I'd put in a task into Sentinel, where the analysts goes to ARG to look these up (or maybe consider a Playbook to do this) https://portal.azure.com/#view/HubsExtension/ArgQueryBlade

    resources
    | where type == "microsoft.compute/virtualmachines"
    | project name, tags
    
    2 people found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.