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: defender-xdr/streaming-api-event-hub.md
+11-7Lines changed: 11 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,18 +113,22 @@ To get the data types for event properties, do the following steps:
113
113
:::image type="content" source="/defender-endpoint/media/machine-info-datatype-example.png" alt-text="An example query for device info" lightbox="/defender-endpoint/media/machine-info-datatype-example.png":::
114
114
115
115
## Estimating initial Event Hub capacity
116
-
The following Advanced Hunting query can help provide a rough estimate of data volume throughput and initial event hub capacity based on events/sec and estimated MB/sec. We recommend running the query during regular business hours so as to capture 'real' throughput.
116
+
The following advanced hunting query can help provide a rough estimate of data volume throughput and initial event hub capacity based on events/sec and estimated MB/sec. We recommend running the query during regular business hours so as to capture 'real' throughput.
117
117
118
-
```kusto
119
-
let bytes_ = 500;
120
-
union withsource=MDTables *
121
-
| where Timestamp > startofday(ago(6h))
118
+
```kusto
119
+
let bytes_ = 1000;
120
+
union withsource=MDTables MyDefenderTable // TODO: Insert desired tables one by one separated by a comma (for example: DeviceEvents, DeviceInfo) or with a wildcard (Device*)
121
+
| where Timestamp > startofday(ago(7d))
122
122
| summarize count() by bin(Timestamp, 1m), MDTables
0 commit comments