Condividi tramite


Query per la tabella KubeEvents

Eventi di Kubernetes

Elenchi tutti gli eventi Kubernetes.

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

Trova in KubeEvents

Trovare in KubeEvents per cercare un valore specifico nella tabella KubeEvents./nNote che questa query richiede l'aggiornamento del <parametro SeachValue> per produrre risultati

// 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