Agent Problems
Query
//Detecting Agent problems
//Based on: https://docs.microsoft.com/en-us/azure/azure-monitor/platform/monitor-workspace#_logsoperation-function
_LogOperation
| where Category == "Agent"
| where Level == "Warning"
| project TimeGenerated, Operation , ComputerExplanation
This query is used to detect agent problems in a log. It filters the log entries based on the category "Agent" and the level "Warning". It then selects and displays the time generated, operation, and computer information for each log entry.