Skip to content

Commit 4b08e8d

Browse files
committed
More cleanup
1 parent 79a3123 commit 4b08e8d

11 files changed

+137
-42
lines changed

articles/sentinel/aws-s3-troubleshoot.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,15 @@ There might be errors in the health logs, or the health feature might not be ena
149149
150150
1. If the health feature isn’t enabled, [enable it](enable-monitoring.md).
151151
152+
See more information on the following items used in the preceding example, in the Kusto documentation:
153+
- [***where*** operator](/kusto/query/where-operator?view=microsoft-sentinel&preserve-view=true)
154+
- [***extend*** operator](/kusto/query/extend-operator?view=microsoft-sentinel&preserve-view=true)
155+
- [***project*** operator](/kusto/query/project-operator?view=microsoft-sentinel&preserve-view=true)
156+
- [***mv-expand*** operator](/kusto/query/mv-expand-operator?view=microsoft-sentinel&preserve-view=true)
157+
- [***ago()*** function](/kusto/query/ago-function?view=microsoft-sentinel&preserve-view=true)
158+
159+
[!INCLUDE [kusto-reference-general-no-alert](includes/kusto-reference-general-no-alert.md)]
160+
152161
## Next steps
153162
154163
In this article, you learned how to quickly identify causes and resolve common issues with the AWS S3 connector.

articles/sentinel/connect-microsoft-365-defender.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ To ingest and synchronize Microsoft Defender XDR incidents with all their alerts
6666

6767
```kusto
6868
SecurityIncident
69-
| where ProviderName == "Microsoft 365 Defender"
69+
| where ProviderName == "Microsoft 365 Defender"
7070
```
7171

7272
When you enable the Microsoft Defender XDR connector, any Microsoft Defender components’ connectors that were previously connected are automatically disconnected in the background. Although they continue to *appear* connected, no data flows through them.
@@ -178,6 +178,22 @@ let Now = now();
178178
| render timechart
179179
```
180180

181+
See more information on the following items used in the preceding examples, in the Kusto documentation:
182+
- [***let*** statement](/kusto/query/let-statement?view=microsoft-sentinel&preserve-view=true)
183+
- [***where*** operator](/kusto/query/where-operator?view=microsoft-sentinel&preserve-view=true)
184+
- [***extend*** operator](/kusto/query/extend-operator?view=microsoft-sentinel&preserve-view=true)
185+
- [***project*** operator](/kusto/query/project-operator?view=microsoft-sentinel&preserve-view=true)
186+
- [***union*** operator](/kusto/query/union-operator?view=microsoft-sentinel&preserve-view=true)
187+
- [***sort*** operator](/kusto/query/sort-operator?view=microsoft-sentinel&preserve-view=true)
188+
- [***summarize*** operator](/kusto/query/summarize-operator?view=microsoft-sentinel&preserve-view=true)
189+
- [***render*** operator](/kusto/query/render-operator?view=microsoft-sentinel&preserve-view=true)
190+
- [***ago()*** function](/kusto/query/ago-function?view=microsoft-sentinel&preserve-view=true)
191+
- [***iff()*** function](/kusto/query/iff-function?view=microsoft-sentinel&preserve-view=true)
192+
- [***max()*** aggregation function](/kusto/query/max-aggregation-function?view=microsoft-sentinel&preserve-view=true)
193+
- [***count()*** aggregation function](/kusto/query/count-aggregation-function?view=microsoft-sentinel&preserve-view=true)
194+
195+
[!INCLUDE [kusto-reference-general-no-alert](includes/kusto-reference-general-no-alert.md)]
196+
181197
## Next step
182198

183199
In this document, you learned how to integrate Microsoft Defender XDR incidents, alerts, and advanced hunting event data from Microsoft Defender services, into Microsoft Sentinel, by using the Microsoft Defender XDR connector.

articles/sentinel/connect-microsoft-purview.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,23 @@ To disconnect the Azure Information Protection connector:
9797
'"MySensitivityLabelId": "MyLabel3"'
9898
'}');
9999
MicrosoftPurviewInformationProtection
100-
| extend SensitivityLabelName = iif(isnotempty(SensitivityLabelId),
100+
| extend SensitivityLabelName = iff(isnotempty(SensitivityLabelId),
101101
tostring(labelsMap[tostring(SensitivityLabelId)]), "")
102-
| extend OldSensitivityLabelName = iif(isnotempty(OldSensitivityLabelId),
102+
| extend OldSensitivityLabelName = iff(isnotempty(OldSensitivityLabelId),
103103
tostring(labelsMap[tostring(OldSensitivityLabelId)]), "")
104104
```
105105
106106
- The `MicrosoftPurviewInformationProtection` table and the `OfficeActivity` table might include some duplicated events.
107-
107+
108+
See more information on the following items used in the preceding examples, in the Kusto documentation:
109+
- [***let*** statement](/kusto/query/let-statement?view=microsoft-sentinel&preserve-view=true)
110+
- [***extend*** operator](/kusto/query/extend-operator?view=microsoft-sentinel&preserve-view=true)
111+
- [***parse_json()*** function](/kusto/query/parse-json-function?view=microsoft-sentinel&preserve-view=true)
112+
- [***iff()*** function](/kusto/query/iff-function?view=microsoft-sentinel&preserve-view=true)
113+
- [***tostring()*** function](/kusto/query/tostring-function?view=microsoft-sentinel&preserve-view=true)
114+
115+
[!INCLUDE [kusto-reference-general-no-alert](includes/kusto-reference-general-no-alert.md)]
116+
108117
## Next steps
109118
110119
In this article, you learned how to set up the Microsoft Purview Information Protection connector to track, analyze, report on the data, and use it for compliance purposes. To learn more about Microsoft Sentinel, see the following articles:

articles/sentinel/ingestion-delay.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ CommonSecurityLog
8282
| where ingestion_time() > ago(rule_look_back)
8383
```
8484

85+
See more information on the following items used in the preceding example, in the Kusto documentation:
86+
- [***let*** statement](/kusto/query/let-statement?view=microsoft-sentinel&preserve-view=true)
87+
- [***where*** operator](/kusto/query/where-operator?view=microsoft-sentinel&preserve-view=true)
88+
- [***ago()*** function](/kusto/query/ago-function?view=microsoft-sentinel&preserve-view=true)
8589

8690
## Calculate ingestion delay
8791

0 commit comments

Comments
 (0)