Microsoft Sentinel From Alert To Investigation
Technical

Microsoft Sentinel From Alert To Investigation

by David Simpson · 2026-08-23
40 chapters 22,709 words ~91 min read English 54 reads

Configuring and using Microsoft Sentinel for SOC investigations

Table of Contents

Preview: Microsoft Sentinel Workspace Onboarding

A short excerpt from “Microsoft Sentinel Workspace Onboarding”. The full book contains 40 chapters and 22,709 words.

Overview


Will the workspace preserve enough evidence to explain who enabled Sentinel, which logs were connected, and when detections became operational? This section provisions a Microsoft Sentinel workspace, enables the service through Azure Resource Manager (ARM), and records the SOC Readiness Checklist fields required for audit and handoff.


Quick Reference


OperationMethod and endpointPurpose
Create Log Analytics workspace`PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}`Creates the logging boundary
Enable Sentinel`PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/onboardings/default`Onboards Sentinel
Verify workspace`GET` on the workspace resourceConfirms region, SKU, and retention
Verify Sentinel`GET` on the onboarding resourceConfirms service state
Record readinessSOC Readiness ChecklistCaptures owner, scope, retention, access, and evidence locations

Parameters


ParameterTypeRequiredDescription
`subscriptionId`stringYesAzure subscription containing the workspace
`resourceGroupName`stringYesResource group for Sentinel resources
`workspaceName`stringYesGlobally unique Log Analytics workspace name
`location`stringYesAzure region, such as `eastus`
`retentionInDays`integerYesWorkspace retention period; commonly `30` to `730` days, subject to service and pricing limits
`skuName`stringYesLog Analytics SKU, normally `PerGB2018`
`api-version`stringYesARM API version; use a currently supported version, such as `2023-09-01` for workspaces
`sentinelApiVersion`stringYesSecurityInsights API version supported in the target environment
`principalId`stringYesEntra ID object ID used for RBAC assignment and audit attribution

Code Example


bash
# Assumptions: az login is complete and the target subscription is selected.
SUB=""
RG="rg-sentinel-prod"
WS="law-sentinel-prod"
LOCATION="eastus"

az account set --subscription "$SUB"
az group create --name "$RG" --location "$LOCATION"

# Create the Log Analytics workspace.
az monitor log-analytics workspace create \
  --resource-group "$RG" \
  --workspace-name "$WS" \
  --location "$LOCATION" \
  --sku PerGB2018 \
  --retention-time 90

# Enable Microsoft Sentinel on the workspace.
az rest --method put \
  --url "https://management.azure.com/subscriptions/$SUB/resourceGroups/$RG/providers/Microsoft.OperationalInsights/workspaces/$WS/providers/Microsoft.SecurityInsights/onboardings/default?api-version=2023-02-01" \
  --body '{}'

# Capture immutable setup evidence for the SOC Readiness Checklist.
az monitor log-analytics workspace show \
  --resource-group "$RG" --workspace-name "$WS" \
  --query '{id:id,location:location,retention:retentionInDays,sku:sku.name}' \
  --output json

Response Format


A workspace query returns a structure similar to:


json
{
  "id": "/subscriptions//resourceGroups/rg-sentinel-prod/providers/Microsoft.OperationalInsights/workspaces/law-sentinel-prod",
  "location": "eastus",
  "retention": 90,
  "sku": "PerGB2018"
}

FieldMeaning
`id`Canonical resource identifier used in RBAC and evidence
`location`Data residency and deployment region
`retention`Configured interactive retention in days
`sku`Billing and ingestion model

Notes & Best Practices


About this book

"Microsoft Sentinel From Alert To Investigation" is a technical book by David Simpson with 40 chapters and approximately 22,709 words. Configuring and using Microsoft Sentinel for SOC investigations.

This book was created using Inkfluence AI, an AI-powered book generation platform that helps authors write, design, and publish complete books. It was made with the AI Documentation Generator.

Frequently Asked Questions

What is "Microsoft Sentinel From Alert To Investigation" about?

Configuring and using Microsoft Sentinel for SOC investigations

How many chapters are in "Microsoft Sentinel From Alert To Investigation"?

The book contains 40 chapters and approximately 22,709 words. Topics covered include Microsoft Sentinel Workspace Onboarding, Microsoft Sentinel RBAC Role Assignments, Azure Monitor Logs Table Provisioning, Data Connector Setup Wizard, and more.

Who wrote "Microsoft Sentinel From Alert To Investigation"?

This book was written by David Simpson and created using Inkfluence AI, an AI book generation platform that helps authors write, design, and publish books.

How can I create a similar technical book?

You can create your own technical book using Inkfluence AI. Describe your idea, choose your style, and the AI writes the full book for you. It's free to start.

Write your own technical book with AI

Describe your idea and Inkfluence writes the whole thing. Free to start.

Start writing

Created with Inkfluence AI