How to create comments in Azure Log Analytics

2020-04-11 04:25发布

I'm trying to create comments in my Azure Log Analytics queries and I'm stumped. Part of my challenge I think is treating this system as if it were SQL, which it is clearly not. using "--" for instance results in a syntax error

traces 
| where severityLevel > 1
-- this is an example of a line comment
| where message !contains "DiagnosticsLogger.GetMethod contains message 1"  
| where message !contains "DiagnosticsLogger.GetMethod contains message 2"
| summarize by timestamp, message, severityLevel

Couldn't find anything for search term "Comment" either on the https://docs.loganalytics.io reference.

1条回答
冷血范
2楼-- · 2020-04-11 04:51

// works for Azure Log Analytics queries

查看更多
登录 后发表回答