ContainerLogV2 テーブルのクエリ
Azure portal でこれらのクエリを使用する方法については、 Log Analytics のチュートリアルを参照してください。 REST API については、「 Query」を参照してください。
ContainerLogV2 で検索する
ContainerLogV2 で検索し、ContainerLogV2 テーブル内の特定の値を検索します。このクエリでは、結果を生成するために <SeachValue> パラメーターを更新する必要があります。
// 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