如何在 Azure Log Analytics 中创建评论
How to create comments in Azure Log Analytics
我正尝试在我的 Azure Log Analytics 查询中创建评论,但我很困惑。我认为我面临的部分挑战是将此系统视为 SQL,但显然不是。例如,使用“--”会导致语法错误
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
在 https://docs.loganalytics.io 参考中找不到搜索词 "Comment" 的任何内容。
// 适用于 Azure Log Analytics 查询
我正尝试在我的 Azure Log Analytics 查询中创建评论,但我很困惑。我认为我面临的部分挑战是将此系统视为 SQL,但显然不是。例如,使用“--”会导致语法错误
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
在 https://docs.loganalytics.io 参考中找不到搜索词 "Comment" 的任何内容。
// 适用于 Azure Log Analytics 查询