Skip to content

Commit 64cee61

Browse files
Merge pull request #286752 from yaelrbergman/docs-editor/summary-rules-1726474889
Update summary-rules.md
2 parents 3595331 + d9a2af7 commit 64cee61

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

articles/sentinel/summary-rules.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ This section reviews common scenarios for creating summary rules in Microsoft Se
135135
```kusto
136136
let csl_columnmatch=(column_name: string) {
137137
CommonSecurityLog
138-
| where TimeGenerated > startofday(ago(1d))
139138
| where isnotempty(column_name)
140139
| extend
141140
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
253252
254253
## Use summary rules with auxiliary logs (sample process)
255254
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.
257256
258257
1. Set up your custom CEF connector from Logstash:
259258
@@ -287,7 +286,6 @@ This procedure describes a sample process for using summary rules with [auxiliar
287286
// Daily Network traffic trend Per Destination IP along with Data transfer stats
288287
// Frequency - Daily - Maintain 30 day or 60 Day History.
289288
  Custom_CommonSecurityLog
290-
  | where TimeGenerated > ago(1d)
291289
  | extend Day = format_datetime(TimeGenerated, "yyyy-MM-dd")
292290
  | summarize Count= count(), DistinctSourceIps = dcount(SourceIP), NoofByesTransferred = sum(SentBytes), NoofBytesReceived = sum(ReceivedBytes)
293291
  by Day,DestinationIp, DeviceVendor

0 commit comments

Comments
 (0)