これらのクエリを Azure ポータルで使用する方法については、ログ分析チュートリアルを参照してください。 REST API については、「 Query」を参照してください。
ContainerLogV2で見つける
ContainerLogV2 で、ContainerLogV2 テーブル内の特定の値を検索します。/nこのクエリでは、結果を表示するために <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