You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/sentinel/summary-rules.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -135,7 +135,6 @@ This section reviews common scenarios for creating summary rules in Microsoft Se
135
135
```kusto
136
136
let csl_columnmatch=(column_name: string) {
137
137
CommonSecurityLog
138
-
| where TimeGenerated > startofday(ago(1d))
139
138
| where isnotempty(column_name)
140
139
| extend
141
140
Date = format_datetime(TimeGenerated, "yyyy-MM-dd"),
@@ -253,7 +252,7 @@ Most of the data sources are raw logs that are noisy and have high volume, but h
253
252
254
253
## Use summary rules with auxiliary logs (sample process)
255
254
256
-
This procedure describes a sample process for using summary rules with [auxiliary logs](basic-logs-use-cases.md), using a custom connection created via an AMR template to ingest CEF data from Logstash.
255
+
This procedure describes a sample process for using summary rules with [auxiliary logs](basic-logs-use-cases.md), using a custom connection created via an ARM template to ingest CEF data from Logstash.
257
256
258
257
1. Set up your custom CEF connector from Logstash:
259
258
@@ -287,7 +286,6 @@ This procedure describes a sample process for using summary rules with [auxiliar
287
286
// Daily Network traffic trend Per Destination IP along with Data transfer stats
288
287
// Frequency - Daily - Maintain 30 day or 60 Day History.
289
288
Custom_CommonSecurityLog
290
-
| where TimeGenerated > ago(1d)
291
289
| extend Day = format_datetime(TimeGenerated, "yyyy-MM-dd")
0 commit comments