在 KQL 中新增批注
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
指出使用者提供的文字。 批註可以插入至個別行、巢狀於結尾或 KQL 查詢或命令內。 不會評估批註文字。
語法
//
評論
深入瞭解 語法慣例。
備註
使用兩個斜線 (【)新增批注。 下表列出您可以用來註解或取消註解文字的鍵盤快速鍵。
熱鍵 | 描述 |
---|---|
Ctrl +K +C |
批注目前的行或選取的行。 |
Ctrl +K +U |
取消批注目前的行或選取的行。 |
範例
此範例會傳回紐約州的事件計數:
// Return the count of events in the New York state from the StormEvents table
StormEvents
| where State == "NEW YORK" // Filter the records where the State is "NEW YORK"
| count