Dotazy na tabulku ContainerLogV2

Informace o používání těchto dotazů na webu Azure Portal najdete v kurzu služby Log Analytics. Informace o rozhraní REST API najdete v tématu Dotaz.

Najít v ContainerLogV2

Vyhledejte v ContainerLogV2 konkrétní hodnotu v tabulce ContainerLogV2./nNote, že tento dotaz vyžaduje aktualizaci parametru <SeachValue> za účelem dosažení výsledků.

// 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.
ContainerLogV2
| where * contains tostring(SearchValue)
| take 1000