This is a continuation of the sample queries written for
Azure Public Cloud for diagnostic purposes. The topic was introduced in this article
earlier.
Sample Kusto queries:
1)
When log entries do not have function names,
scopes or duration of calls:
source
| where description Contains
"<string-before-scope-of-execution>"
| project SessionId, StartTime=timestamp
| join (source
| where description Contains
"<string-after-scope-of-execution>"
| project StopTime=timestamp, SessionId)
on SessionId
| project SessionId, StartTime, StopTime,
duration = StopTime - StartTime
| summarize count() by
duration=bin(min_duration/1s, 10)
| sort by duration asc
| render barchart
2)
Since the duration column is also relevant to
other queries later
source
| extend duration = endTime – sourceTime
3)
When the log entries do not have an exact match
for a literal:
source
| filter EventText like "NotifyPerformanceCounters"
| extend Tenant =
extract("tenantName=([^,]+),", 1, EventText)
4)
If we wanted to use regular expressions on
EventText:
source
| parse EventText with * "resourceName="
resourceName ",
totalSlices=" totalSlices:long *
releaseTime=" releaseTime:date ")" *
| valid in~ ("true", "false")
5)
If we wanted to read signin logs:
source
| evaluate bag_unpack(LocationDetails)
| where RiskLevelDuringSignIn == 'none'
and
TimeGenerated >= ago(7d)
| summarize Count = count() by city
| sort by Count desc
| take 5
No comments:
Post a Comment