Post Delivery Events over time
Description
This query visualises the daily amount of emails that had a post delivery action from zero-hour auto purge.
Query · kql
let TimeStart = startofday(ago(30d)); let TimeEnd = startofday(now()); EmailPostDeliveryEvents | where Timestamp >= TimeStart | where ActionType has "ZAP" | make-series ZappedEmails = count() default = 0 on Timestamp from TimeStart to TimeEnd step 1d | render timechart