Successfully added
Software Development
by Patrik
Kusto Query Sample
let startdate = ago(1h);
let current = toscalar(AzureNetworkAnalytics_CL
| where FlowStartTime_t > startdate
| where SubType_s == "FlowLog" and FlowDirection_s == "O"
| extend DestinationIP = extract("(([0-9]{1,3})\\.([0-9]{1,3})\\.([0-9]{1,3})\\.(([0-9]{1,3})))", 1, DestPublicIPs_s)
| distinct DestinationIP
| summarize make_list(DestinationIP));
let history = toscalar (AzureNetworkAnalytics_CL
| where FlowStartTime_t <= startdate and FlowStartTime_t > ago(2d)
| where SubType_s == "FlowLog" and FlowDirection_s == "O"
| extend DestinationIP = extract("(([0-9]{1,3})\\.([0-9]{1,3})\\.([0-9]{1,3})\\.(([0-9]{1,3})))", 1, DestPublicIPs_s)
| distinct DestinationIP
| summarize make_list(DestinationIP));
print set_difference(current, history)
Referenced in:
Comments