共用方式為


KubeEvents 數據表的查詢

如需在 Azure 入口網站 中使用這些查詢的詳細資訊,請參閱Log Analytics教學課程。 如需 REST API,請參閱 查詢

Kubernetes 事件

列出所有 Kubernetes 事件。

KubeEvents
| where TimeGenerated > ago(7d) 
| where not(isempty(Namespace))
| top 200 by TimeGenerated desc

尋找 KubeEvents

在 KubeEvents 中尋找以搜尋 KubeEvents 數據表中的特定值。/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.
KubeEvents
| where * contains tostring(SearchValue)
| take 1000