KubeMonAgentEvents テーブルのクエリ

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

KubeMonAgentEvents で検索する

KubeMonAgentEvents で検索し、KubeMonAgentEvents テーブル内の特定の値を検索します。/nNote では、結果を生成するためにこのクエリで <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.
KubeMonAgentEvents
| where * contains tostring(SearchValue)
| take 1000