We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The query for "Warning events" has a case-sensitive KQL error and does not retrieve any results.
Warning events.kql:9
Events | where EventLevelName == "warning" // this does not work | sort by TimeGenerated desc
Sampled values for the EventLevelName field are "Information", "Warning", "Error".
A likely source of this code sample is the Azure Monitor Reference page for the Event table.
Event
I propose using a case-insensitive match for the field:
Events | where EventLevelName =~ "Warning"
The pattern can be found in several query files in this repo, for example:
Here are screenshots illustrating the values of EventLevelName.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The query for "Warning events" has a case-sensitive KQL error and does not retrieve any results.
Warning events.kql:9
Sampled values for the EventLevelName field are "Information", "Warning", "Error".
A likely source of this code sample is the Azure Monitor Reference page for the
Event
table.I propose using a case-insensitive match for the field:
The pattern can be found in several query files in this repo, for example:
Here are screenshots illustrating the values of EventLevelName.
The text was updated successfully, but these errors were encountered: