Skip to content

Commit 23f5ab9

Browse files
committed
Added 8 more files
1 parent ff69c4c commit 23f5ab9

8 files changed

+102
-8
lines changed

articles/sentinel/audit-sentinel-data.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ LAQueryLogs
177177
|summarize arg_max(StatsCPUTimeMs, *) by AADClientId
178178
| extend User = AADEmail, QueryRunTime = StatsCPUTimeMs
179179
| project User, QueryRunTime, QueryText
180-
| order by QueryRunTime desc
180+
| sort by QueryRunTime desc
181181
```
182182

183183
### Show users who ran the most queries in the past week
@@ -233,6 +233,22 @@ Use Microsoft Sentinel's own features to monitor events and actions that occur w
233233

234234
- **Monitor data connector health** using the [Connector Health Push Notification Solution](https://github.com/Azure/Azure-Sentinel/tree/master/Playbooks/Send-ConnectorHealthStatus) playbook to watch for stalled or stopped ingestion, and send notifications when a connector has stopped collecting data or machines have stopped reporting.
235235

236+
See more information on the following items used in the preceding examples, in the Kusto documentation:
237+
- [***let*** statement](/kusto/query/let-statement?view=microsoft-sentinel&preserve-view=true)
238+
- [***where*** operator](/kusto/query/where-operator?view=microsoft-sentinel&preserve-view=true)
239+
- [***project*** operator](/kusto/query/project-operator?view=microsoft-sentinel&preserve-view=true)
240+
- [***count*** operator](/kusto/query/count-operator?view=microsoft-sentinel&preserve-view=true)
241+
- [***sort*** operator](/kusto/query/sort-operator?view=microsoft-sentinel&preserve-view=true)
242+
- [***extend*** operator](/kusto/query/extend-operator?view=microsoft-sentinel&preserve-view=true)
243+
- [***join*** operator](/kusto/query/join-operator?view=microsoft-sentinel&preserve-view=true)
244+
- [***summarize*** operator](/kusto/query/summarize-operator?view=microsoft-sentinel&preserve-view=true)
245+
- [***ago()*** function](/kusto/query/ago-function?view=microsoft-sentinel&preserve-view=true)
246+
- [***ingestion_time()*** function](/kusto/query/ingestion-time-function?view=microsoft-sentinel&preserve-view=true)
247+
- [***count()*** aggregation function](/kusto/query/count-aggregation-function?view=microsoft-sentinel&preserve-view=true)
248+
- [***arg_max()*** aggregation function](/kusto/query/arg-max-aggregation-function?view=microsoft-sentinel&preserve-view=true)
249+
250+
[!INCLUDE [kusto-reference-general-no-alert](includes/kusto-reference-general-no-alert.md)]
251+
236252
## Next step
237253

238254
In Microsoft Sentinel, use the **Workspace audit** workbook to audit the activities in your SOC environment. For more information, see [Visualize and monitor your data](monitor-your-data.md).

articles/sentinel/audit-track-tasks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ The detailed information added to the **Tasks** field consists of key-value pair
3030
| --- | ----- |
3131
| **createdBy** | The identity that created the task:<br>**- email**: email address of identity<br>**- name**: name of the identity<br>**- objectId**: GUID of the identity<br>**- userPrincipalName**: UPN of the identity |
3232
| **createdTimeUtc** | Time the task was created, in UTC. |
33-
| **lastCompletedTimeUtc** | Time the task was marked complete, in UTC.
33+
| **lastCompletedTimeUtc** | Time the task was marked complete, in UTC. |
3434
| **lastModifiedBy** | The identity that last modified the task:<br>**- email**: email address of identity<br>**- name**: name of the identity<br>**- objectId**: GUID of the identity<br>**- userPrincipalName**: UPN of the identity |
35-
| **lastModifiedTimeUtc** | Time the task was last modified, in UTC.
35+
| **lastModifiedTimeUtc** | Time the task was last modified, in UTC. |
3636
| **status** | Current status of the task: New, Completed, Deleted. |
3737
| **taskId** | Resource ID of the task. |
3838
| **title** | Friendly name given to the task by its creator. |

articles/sentinel/billing-monitor-costs.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Usage
7575
| where StartTime >= startofday(ago(31d)) and EndTime < startofday(now())
7676
| where IsBillable == true
7777
| summarize BillableDataGB = sum(Quantity) / 1000. by bin(StartTime, 1d), Solution
78-
| extend Solution = iif(Solution == "SecurityInsights", "AzureSentinel", Solution)
78+
| extend Solution = iff(Solution == "SecurityInsights", "AzureSentinel", Solution)
7979
| render columnchart
8080
```
8181

@@ -97,10 +97,26 @@ Usage
9797
| where StartTime >= startofday(ago(31d)) and EndTime < startofday(now())
9898
| where IsBillable == true
9999
| summarize BillableDataGB = sum(Quantity) / 1000. by Solution, DataType
100-
| extend Solution = iif(Solution == "SecurityInsights", "AzureSentinel", Solution)
100+
| extend Solution = iff(Solution == "SecurityInsights", "AzureSentinel", Solution)
101101
| sort by Solution asc, DataType asc
102102
```
103103

104+
See more information on the following items used in the preceding examples, in the Kusto documentation:
105+
- [***where*** operator](/kusto/query/where-operator?view=microsoft-sentinel&preserve-view=true)
106+
- [***extend*** operator](/kusto/query/extend-operator?view=microsoft-sentinel&preserve-view=true)
107+
- [***summarize*** operator](/kusto/query/summarize-operator?view=microsoft-sentinel&preserve-view=true)
108+
- [***render*** operator](/kusto/query/render-operator?view=microsoft-sentinel&preserve-view=true)
109+
- [***sort*** operator](/kusto/query/sort-operator?view=microsoft-sentinel&preserve-view=true)
110+
- [***iff()*** function](/kusto/query/iff-function?view=microsoft-sentinel&preserve-view=true)
111+
- [***ago()*** function](/kusto/query/ago-function?view=microsoft-sentinel&preserve-view=true)
112+
- [***now()*** function](/kusto/query/now-function?view=microsoft-sentinel&preserve-view=true)
113+
- [***bin()*** function](/kusto/query/bin-function?view=microsoft-sentinel&preserve-view=true)
114+
- [***startofday()*** function](/kusto/query/startofday-function?view=microsoft-sentinel&preserve-view=true)
115+
- [***count()*** aggregation function](/kusto/query/count-aggregation-function?view=microsoft-sentinel&preserve-view=true)
116+
- [***sum()*** aggregation function](/kusto/query/sum-aggregation-function?view=microsoft-sentinel&preserve-view=true)
117+
118+
[!INCLUDE [kusto-reference-general-no-alert](includes/kusto-reference-general-no-alert.md)]
119+
104120
## Deploy a workbook to visualize data ingestion
105121

106122
The **Workspace Usage Report workbook** provides your workspace's data consumption, cost, and usage statistics. The workbook gives the workspace's data ingestion status and amount of free and billable data. You can use the workbook logic to monitor data ingestion and costs, and to build custom views and rule-based alerts.

articles/sentinel/customize-entity-activities.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,15 @@ For example:
207207
208208
When you are satisfied with your query and activity title, select **Next : Review**.
209209
210+
See more information on the following items used in the preceding examples, in the Kusto documentation:
211+
- [***where*** operator](/kusto/query/where-operator?view=microsoft-sentinel&preserve-view=true)
212+
- [***project*** operator](/kusto/query/project-operator?view=microsoft-sentinel&preserve-view=true)
213+
- [***summarize*** operator](/kusto/query/summarize-operator?view=microsoft-sentinel&preserve-view=true)
214+
- [***bin()*** function](/kusto/query/bin-function?view=microsoft-sentinel&preserve-view=true)
215+
- [***count()*** aggregation function](/kusto/query/count-aggregation-function?view=microsoft-sentinel&preserve-view=true)
216+
217+
[!INCLUDE [kusto-reference-general-no-alert](includes/kusto-reference-general-no-alert.md)]
218+
210219
### Review and create tab
211220
212221
1. Verify all the configuration information of your custom activity.

articles/sentinel/false-positives.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,18 @@ You can also do subnet filtering by using a watchlist. For example, in the prece
144144
let subnets = _GetWatchlist('subnetallowlist');
145145
```
146146

147+
See more information on the following items used in the preceding examples, in the Kusto documentation:
148+
- [***let*** statement](/kusto/query/let-statement?view=microsoft-sentinel&preserve-view=true)
149+
- [***where*** operator](/kusto/query/where-operator?view=microsoft-sentinel&preserve-view=true)
150+
- [***project*** operator](/kusto/query/project-operator?view=microsoft-sentinel&preserve-view=true)
151+
- [***datatable*** operator](/kusto/query/datatable-operator?view=microsoft-sentinel&preserve-view=true)
152+
- [***evaluate*** plugin operator](/kusto/query/evaluate-operator?view=microsoft-sentinel&preserve-view=true)
153+
- [***ago()*** function](/kusto/query/ago-function?view=microsoft-sentinel&preserve-view=true)
154+
- [***isempty()*** function](/kusto/query/isempty-function?view=microsoft-sentinel&preserve-view=true)
155+
- [***ipv4_lookup*** plugin](/kusto/query/ipv4-lookup-plugin?view=microsoft-sentinel&preserve-view=true)
156+
157+
[!INCLUDE [kusto-reference-general-no-alert](includes/kusto-reference-general-no-alert.md)]
158+
147159
## Example: Manage exceptions for the Microsoft Sentinel solution for SAP® applications
148160

149161
The [Microsoft Sentinel solution for SAP® applications](sap/solution-overview.md) provides functions you can use to exclude users or systems from triggering alerts.

articles/sentinel/investigate-with-ueba.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,22 @@ For example:
113113
114114
The **IdentityInfo** table synchronizes with your Microsoft Entra workspace to create a snapshot of your user profile data, such as user metadata, group information, and Microsoft Entra roles assigned to each user. For more information, see [IdentityInfo table](ueba-reference.md#identityinfo-table) in the UEBA enrichments reference.
115115
116+
See more information on the following items used in the preceding examples, in the Kusto documentation:
117+
- [***where*** operator](/kusto/query/where-operator?view=microsoft-sentinel&preserve-view=true)
118+
- [***join*** operator](/kusto/query/join-operator?view=microsoft-sentinel&preserve-view=true)
119+
- [***summarize*** operator](/kusto/query/summarize-operator?view=microsoft-sentinel&preserve-view=true)
120+
- [***render*** operator](/kusto/query/render-operator?view=microsoft-sentinel&preserve-view=true)
121+
- [***sort*** operator](/kusto/query/sort-operator?view=microsoft-sentinel&preserve-view=true)
122+
- [***iff()*** function](/kusto/query/iff-function?view=microsoft-sentinel&preserve-view=true)
123+
- [***ago()*** function](/kusto/query/ago-function?view=microsoft-sentinel&preserve-view=true)
124+
- [***now()*** function](/kusto/query/now-function?view=microsoft-sentinel&preserve-view=true)
125+
- [***bin()*** function](/kusto/query/bin-function?view=microsoft-sentinel&preserve-view=true)
126+
- [***startofday()*** function](/kusto/query/startofday-function?view=microsoft-sentinel&preserve-view=true)
127+
- [***count()*** aggregation function](/kusto/query/count-aggregation-function?view=microsoft-sentinel&preserve-view=true)
128+
- [***sum()*** aggregation function](/kusto/query/sum-aggregation-function?view=microsoft-sentinel&preserve-view=true)
129+
130+
[!INCLUDE [kusto-reference-general-no-alert](includes/kusto-reference-general-no-alert.md)]
131+
116132
## Identify password spray and spear phishing attempts
117133
118134
Without multifactor authentication (MFA) enabled, user credentials are vulnerable to attackers looking to compromise attacks with [password spraying](https://www.microsoft.com/security/blog/2020/04/23/protecting-organization-password-spray-attacks/) or [spear phishing](https://www.microsoft.com/security/blog/2019/12/02/spear-phishing-campaigns-sharper-than-you-think/) attempts.

articles/sentinel/monitor-automation-health.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,16 @@ SentinelHealth
135135
playbookRunStatus
136136
```
137137

138+
See more information on the following items used in the preceding examples, in the Kusto documentation:
139+
- [***where*** operator](/kusto/query/where-operator?view=microsoft-sentinel&preserve-view=true)
140+
- [***mv-expand*** operator](/kusto/query/mv-expand-operator?view=microsoft-sentinel&preserve-view=true)
141+
- [***extend*** operator](/kusto/query/extend-operator?view=microsoft-sentinel&preserve-view=true)
142+
- [***join*** operator](/kusto/query/join-operator?view=microsoft-sentinel&preserve-view=true)
143+
- [***project*** operator](/kusto/query/project-operator?view=microsoft-sentinel&preserve-view=true)
144+
- [***tostring()*** function](/kusto/query/tostring-function?view=microsoft-sentinel&preserve-view=true)
145+
146+
[!INCLUDE [kusto-reference-general-no-alert](includes/kusto-reference-general-no-alert.md)]
147+
138148
## Use the health monitoring workbook
139149

140150
The **Automation health** workbook helps you visualize your health data, as well as the correlation between the two types of logs that we just mentioned. The workbook includes the following displays:

articles/sentinel/monitor-your-data.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Use a template installed from the content hub to create a workbook.
5555

5656
1. Select the **Edit** button in the workbook toolbar to customize the workbook according to your needs.
5757

58-
[ ![Screenshot that shows the saved workbook.](media/monitor-your-data/workbook-graph.png) ](media/monitor-your-data/workbook-graph.png#lightbox)
58+
:::image type="content" source="media/monitor-your-data/workbook-graph.png" alt-text="Screenshot that shows the saved workbook." lightbox="media/monitor-your-data/workbook-graph.png":::
5959

6060
For example, select the **TimeRange** filter to view data for a different time range than the current selection. To edit a specific workbook area, either select **Edit** or select the ellipsis (**...**) to add elements, or move, clone, or remove the area.
6161

@@ -78,7 +78,7 @@ Create a workbook from scratch in Microsoft Sentinel.
7878

7979
1. To edit the workbook, select **Edit**, and then add text, queries, and parameters as necessary. For more information on how to customize the workbook, see how to [Create interactive reports with Azure Monitor Workbooks](/azure/azure-monitor/visualize/workbooks-overview).
8080

81-
[ ![Screenshot that shows a new workbook.](media/monitor-your-data/create-workbook.png) ](media/monitor-your-data/create-workbook.png#lightbox)
81+
:::image type="content" source="media/monitor-your-data/create-workbook.png" alt-text="Screenshot that shows a new workbook." lightbox="media/monitor-your-data/create-workbook.png":::
8282

8383
1. When building a query, set the **Data source** to **Logs** and **Resource type** to **Log Analytics**, and then choose one or more workspaces.
8484

@@ -92,7 +92,7 @@ Create a workbook from scratch in Microsoft Sentinel.
9292

9393
Select the workbook you want to open:
9494

95-
[ ![Switch workbooks.](media/monitor-your-data/switch-workbooks.png) ](media/monitor-your-data/switch-workbooks.png#lightbox)
95+
:::image type="content" source="media/monitor-your-data/switch-workbooks.png" alt-text="Switch workbooks." lightbox="media/monitor-your-data/switch-workbooks.png":::
9696

9797
## Create new tiles for your workbooks
9898

@@ -184,6 +184,21 @@ AuditLogs
184184
| project-away user1
185185
```
186186

187+
See more information on the following items used in the preceding examples, in the Kusto documentation:
188+
- [***where*** operator](/kusto/query/where-operator?view=microsoft-sentinel&preserve-view=true)
189+
- [***extend*** operator](/kusto/query/extend-operator?view=microsoft-sentinel&preserve-view=true)
190+
- [***project*** operator](/kusto/query/project-operator?view=microsoft-sentinel&preserve-view=true)
191+
- [***project-away*** operator](/kusto/query/project-away-operator?view=microsoft-sentinel&preserve-view=true)
192+
- [***join*** operator](/kusto/query/join-operator?view=microsoft-sentinel&preserve-view=true)
193+
- [***summarize*** operator](/kusto/query/summarize-operator?view=microsoft-sentinel&preserve-view=true)
194+
- [***ago()*** function](/kusto/query/ago-function?view=microsoft-sentinel&preserve-view=true)
195+
- [***bin()*** function](/kusto/query/bin-function?view=microsoft-sentinel&preserve-view=true)
196+
- [***iff()*** function](/kusto/query/iff-function?view=microsoft-sentinel&preserve-view=true)
197+
- [***tostring()*** function](/kusto/query/tostring-function?view=microsoft-sentinel&preserve-view=true)
198+
- [***count()*** aggregation function](/kusto/query/count-aggregation-function?view=microsoft-sentinel&preserve-view=true)
199+
200+
[!INCLUDE [kusto-reference-general-no-alert](includes/kusto-reference-general-no-alert.md)]
201+
187202
## Related articles
188203

189204
For more information, see:

0 commit comments

Comments
 (0)