Skip to content

Commit b025602

Browse files
committed
More auxiliary edits
1 parent 205afcc commit b025602

File tree

2 files changed

+17
-20
lines changed

2 files changed

+17
-20
lines changed

articles/sentinel/billing.md

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ If you're billed at the simplified Commitment tier rate, this table shows how Mi
129129
| Cost description | Service name | Meter |
130130
|--|--|--|
131131
| Microsoft Sentinel Commitment tier | `Sentinel` | **`n` GB Commitment Tier** |
132-
| Microsoft Sentinel Commitment tier overage | `Sentinel` |**Analysis**|
132+
| Microsoft Sentinel Commitment tier overage | `Sentinel` | **Analysis** |
133133

134134
# [Commitment tiers](#tab/commitment-tiers/classic)
135135

@@ -139,18 +139,17 @@ If you're billed at the classic Commitment tier rate, this table shows how Micro
139139
|--|--|--|
140140
| Microsoft Sentinel Commitment tier | `Sentinel` | **Classic `n` GB commitment tier** |
141141
| Log Analytics Commitment tier | `Azure Monitor` | **`n` GB commitment tier** |
142-
| Microsoft Sentinel Commitment tier overage | `Sentinel` |**Classic Analysis**|
143-
| Log Analytics over the Commitment tier| `Log Analytics` |**Data Ingestion**|
142+
| Microsoft Sentinel Commitment tier overage | `Sentinel` | **Classic Analysis** |
143+
| Log Analytics over the Commitment tier | `Log Analytics` | **Data Ingestion** |
144144

145145
# [Pay-as-you-go](#tab/pay-as-you-go/simplified)
146146

147147
If you're billed at the simplified pay-as-you-go rate, this table shows how Microsoft Sentinel costs appear in the **Service name** and **Meter** columns of your Azure bill.
148148

149149
| Cost description | Service name | Meter |
150150
|--|--|--|
151-
| Pay-as-you-go| `Sentinel` |**Pay-as-You-Go Analysis**|
152-
| Basic logs data analysis| `Sentinel` |**Basic Logs Analysis**|
153-
| Auxiliary logs data analysis| `Sentinel` |**???**|
151+
| Pay-as-you-go | `Sentinel` | **Pay-as-you-go Analysis** |
152+
| Auxiliary logs data analysis | `Sentinel` | **???** |
154153

155154

156155
# [Pay-as-you-go](#tab/pay-as-you-go/classic)
@@ -159,12 +158,10 @@ If you're billed at classic pay-as-you-go rate, this table shows how Microsoft S
159158

160159
| Cost description | Service name | Meter |
161160
|--|--|--|
162-
| pay-as-you-go| `Sentinel` |**Classic Pay-as-You-Go Analysis**|
163-
| pay-as-you-go| `Log Analytics` |**Pay-as-You-Go Data Ingestion**|
164-
| Basic logs data analysis| `Sentinel` |**Classic Basic Logs Analysis**|
165-
| Basic logs data ingestion| `Azure Monitor` |**Basic Logs Data Ingestion**|
166-
| Auxiliary logs data analysis| `Sentinel` |**???**|
167-
| Auxiliary logs data ingestion| `Azure Monitor` |**???**|
161+
| Pay-as-you-go | `Sentinel` | **Classic Pay-as-you-go Analysis** |
162+
| Pay-as-you-go | `Log Analytics` | **Pay-as-you-go Data Ingestion** |
163+
| Auxiliary logs data analysis | `Sentinel` | **???** |
164+
| Auxiliary logs data ingestion | `Azure Monitor` | **???** |
168165

169166

170167
# [Free data meters](#tab/free-data-meters/simplified)
@@ -173,8 +170,8 @@ This table shows how Microsoft Sentinel and Log Analytics no charge costs appear
173170

174171
| Cost description | Service name | Meter |
175172
|--|--|--|
176-
| Microsoft Sentinel Free Trial – Sentinel Analysis| `Sentinel` |**Free trial Analysis**|
177-
| Microsoft Defender XDR Benefit – Data Analysis| `Sentinel` |**Free Benefit - M365 Defender Analysis**|
173+
| Microsoft Sentinel Free Trial – Sentinel Analysis | `Sentinel` | **Free trial Analysis** |
174+
| Microsoft Defender XDR Benefit – Data Analysis | `Sentinel` | **Free Benefit - M365 Defender Analysis** |
178175

179176

180177
# [Free data meters](#tab/free-data-meters/classic)
@@ -183,10 +180,10 @@ This table shows how Microsoft Sentinel and Log Analytics no charge costs appear
183180

184181
| Cost description | Service name | Meter |
185182
|--|--|--|
186-
| Microsoft Sentinel Free Trial – Log Analytics data ingestion| `Azure Monitor` |**Free Benefit - Az Sentinel Trial Data Ingestion**|
187-
| Microsoft Sentinel Free Trial – Sentinel Analysis| `Sentinel` |**Free trial Analysis**|
188-
| Microsoft Defender XDR Benefit – Data Ingestion| `Azure Monitor` |**Free Benefit - M365 Defender Data Ingestion**|
189-
| Microsoft Defender XDR Benefit – Data Analysis| `Sentinel` |**Free Benefit - M365 Defender Analysis**|
183+
| Microsoft Sentinel Free Trial – Log Analytics data ingestion | `Azure Monitor` | **Free Benefit - Az Sentinel Trial Data Ingestion** |
184+
| Microsoft Sentinel Free Trial – Sentinel Analysis | `Sentinel` | **Free trial Analysis** |
185+
| Microsoft Defender XDR Benefit – Data Ingestion | `Azure Monitor` | **Free Benefit - M365 Defender Data Ingestion** |
186+
| Microsoft Defender XDR Benefit – Data Analysis | `Sentinel` | **Free Benefit - M365 Defender Analysis** |
190187

191188
---
192189

articles/sentinel/summary-rules.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,14 +218,14 @@ This procedure describes a sample process for using summary rules with [auxiliar
218218
219219
1. Create summary rules that aggregate your CEF data. For example:
220220
221-
- **Lookup incident of concern (IoC) data**: Hunt for specific IoCs by running aggregated summary queries to bring unique occurrences, and then query only those occurrences for faster results. The following example shows an example of how to bring a unique `Source Ip` feed along with other metadata, which can then be used against IoC lookups:
221+
- **Lookup indicator of compromise (IoC) data**: Hunt for specific IoCs by running aggregated summary queries to bring unique occurrences, and then query only those occurrences for faster results. The following example shows an example of how to bring a unique `Source Ip` feed along with other metadata, which can then be used against IoC lookups:
222222
223223
```kusto
224224
// Daily Network traffic trend Per Destination IP along with Data transfer stats
225225
// Frequency - Daily - Maintain 30 day or 60 Day History.
226226
  Custom_CommonSecurityLog
227227
  | extend Day = format_datetime(TimeGenerated, "yyyy-MM-dd")
228-
  | summarize Count= count(), DistinctSourceIps = dcount(SourceIP), NoofByesTransferred = sum(SentBytes), NoofBytesReceived = sum(ReceivedBytes)
228+
  | summarize Count= count(), DistinctSourceIps = dcount(SourceIP), NoofBytesTransferred = sum(SentBytes), NoofBytesReceived = sum(ReceivedBytes)
229229
  by Day,DestinationIp, DeviceVendor
230230
```
231231

0 commit comments

Comments
 (0)