Alert Context Parser
Query
//Parser for getting the EventID from the AlertContext column in the Alert table
Alert
| parse-where AlertContext with * "EventNumber>" EventNo "<" *
| project EventNoExplanation
This query is used to extract the EventID from the AlertContext column in the Alert table. It uses the parse-where operator to search for the EventNumber value within the AlertContext column and then projects only the EventNo value.
Details

Rod Trent
Released: August 6, 2021
Tables
Alert
Keywords
Alertparse-whereAlertContextEventNumberEventNoproject
Operators
parse-wherewith*"EventNumber>"EventNo"<"project