Skip to content

Commit 9698770

Browse files
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into files-dev-docs
2 parents 0ce4ae6 + 9d4d819 commit 9698770

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

articles/governance/machine-configuration/whats-new/migrating-from-dsc-extension.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,28 @@ in the Azure Portal open “Virtual machines”, select the name of each virtual
2727
“Settings” in the table of contents, and finally “Extensions + Applications”.
2828
There you will see a list of extensions assigned.
2929

30+
The following query will return a list of virtual machines in Azure with the
31+
DSC extension (for Windows) attached.
32+
33+
```Kusto
34+
resources
35+
| where type == 'microsoft.compute/virtualmachines'
36+
| extend
37+
JoinID = toupper(id),
38+
OSName = tostring(properties.osProfile.computerName),
39+
OSType = tostring(properties.storageProfile.osDisk.osType)
40+
| join kind=inner(
41+
resources
42+
| where type == 'microsoft.compute/virtualmachines/extensions'
43+
| extend
44+
VMId = toupper(substring(id, 0, indexof(id, '/extensions'))),
45+
ExtensionName = tolower(name)
46+
| where ExtensionName == 'microsoft.powershell.dsc'
47+
) on $left.JoinID == $right.VMId
48+
| project OSName, OSType, ExtensionName, ['id']
49+
| order by tolower(OSName) asc
50+
```
51+
3052
## Major differences
3153

3254
Machine configuration uses DSC version 2. DSC Extension uses

articles/sentinel/billing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ appliesto:
2121

2222
As you plan your Microsoft Sentinel deployment, you typically want to understand its pricing and billing models to optimize your costs. Microsoft Sentinel's security analytics data is stored in an Azure Monitor Log Analytics workspace. Billing is based on the volume of data *analyzed* in Microsoft Sentinel and *stored* in the Log Analytics workspace. The cost of both is combined in a simplified pricing tier. Learn more about the [simplified pricing tiers](#simplified-pricing-tiers) or learn more about [Microsoft Sentinel pricing](https://azure.microsoft.com/pricing/details/microsoft-sentinel/) in general.
2323

24-
Before you add any resources for Microsoft Sentinel, use the [Azure pricing calculator](https://azure.microsoft.com/pricing/calculator/) to help estimate your costs.
24+
Estimate your costs before you add any resources to your Microsoft Sentinel workspace by finding Microsoft Sentinel in the **Security** section of the [Azure pricing calculator](https://azure.microsoft.com/pricing/calculator/).
2525

2626
Costs for Microsoft Sentinel are only a portion of the monthly costs in your Azure bill. Although this article explains how to plan costs and understand the billing for Microsoft Sentinel, you're billed for all Azure services and resources your Azure subscription uses, including Partner services.
2727

0 commit comments

Comments
 (0)