Condividi tramite


Query per la tabella ConfigurationData

Per informazioni sull'uso di queste query nella portale di Azure, vedere Esercitazione su Log Analytics. Per l'API REST, vedere Query.

Servizi automatici arrestati recenti

Mostra i servizi più recenti impostati su Auto ma segnalati come arrestati.

ConfigurationData
| where ConfigDataType == "WindowsServices" and SvcStartupType == "Auto"
| where SvcState == "Stopped"
| summarize arg_max(TimeGenerated, *) by SoftwareName, Computer