Condividi tramite


Query per la tabella ContainerServiceLog

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

Trova in ContainerServiceLog

Trova in ContainerServiceLog per effettuare una ricerca di un valore specifico nella tabella ContainerServiceLog./nNota che questa query richiede l'aggiornamento del <parametro SearchValue> per produrre risultati

// This query requires a parameter to run. Enter value in SearchValue to find in table.
let SearchValue =  "<SearchValue>";//Please update term you would like to find in the table.
ContainerServiceLog
| where * contains tostring(SearchValue)
| take 1000