and | or | limit | top
Last updated
VMConnection
| where RemoteLatitude >= 60 or ResponseTimeMax > 1000WindowsFirewall
| where (DestinationPort == '80' and Protocol == "TCP") or DestinationIP startswith "20"
| project DestinationPort, Protocol, DestinationIPVMConnections
| take 10
| limit 10
// both do the same thing.SigninLogs
| top 10 by TimeGenerated descVMConnection
| where * has '389'
| top 10 by TimeGenerated desc