次の方法で共有


コンテナサービスログテーブルに対するクエリ

Azure ポータルでこれらのクエリを使用する方法については、Log Analytics チュートリアルを参照してください。 For the REST API, see Query.

「ContainerServiceLog」で検索

指定された値を検索するには、ContainerServiceLog テーブルで検索してください。/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.
ContainerServiceLog
| where * contains tostring(SearchValue)
| take 1000