次の方法で共有


KubeServicesテーブルへのクエリ

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

KubeServices内で検索

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