Delen via


Query's voor de tabel ContainerServiceLog

Zie de zelfstudie over Log Analytics voor meer informatie over het gebruik van deze query's in Azure Portal. Zie Query voor de REST API.

Zoeken in ContainerServiceLog

Zoek in ContainerServiceLog om te zoeken naar een specifieke waarde in de tabel ContainerServiceLog./nNote dat voor deze query de <SeachValue-parameter> moet worden bijgewerkt om resultaten te produceren

// 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