Query Details

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 , Computer 

Explanation

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.

Details

Rod Trent profile picture

Rod Trent

Released: October 21, 2020

Tables

_LogOperation

Keywords

_LogOperation,Category,Level,Warning,project,TimeGenerated,Operation,Computer

Operators

where==|project

Actions