Skip to content

Commit

Permalink
KQL to calculate Tenant External Recipient Rate Limit.kql
Browse files Browse the repository at this point in the history
  • Loading branch information
SlimKQL authored Feb 25, 2025
1 parent 91bfbfb commit a5aff68
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Tenant External Recipient Rate Limit or TERR
//

EmailEvents
| where Timestamp > ago(30d)
| where EmailDirection == "Outbound"
| summarize OutboundEmailVol=count() by bin(Timestamp,1d)
| sort by OutboundEmailVol desc

0 comments on commit a5aff68

Please sign in to comment.