Blocked URL Clicks by Workload
Description
This query visualises blocked Safe Links URL clicks over time broken down by the workload the click came from (Email, Teams, Office, Microsoft 365 Copilot).
Query · kql
let TimeStart = startofday(ago(30d)); let TimeEnd = startofday(now()); UrlClickEvents | where Timestamp >= TimeStart | where ActionType == "ClickBlocked" | make-series Teams = countif(Workload == "Teams"), Office = countif(Workload == "Office"), Email = countif(Workload == "Email"), Copilot = countif(Workload == "Copilot") default = 0 on Timestamp from TimeStart to TimeEnd step 1d | render timechart