mirror of
https://github.com/kubernetes/kubernetes.git
synced 2026-03-31 14:55:27 -04:00
add WATCH to list of excluded verbs for latency metrics
This commit is contained in:
parent
c8a87d3a62
commit
bf30b0c71b
1 changed files with 1 additions and 1 deletions
|
|
@ -221,7 +221,7 @@ func readLatencyMetrics(c clientset.Interface) (APIResponsiveness, error) {
|
|||
|
||||
ignoredResources := sets.NewString("events")
|
||||
// TODO: figure out why we're getting non-capitalized proxy and fix this.
|
||||
ignoredVerbs := sets.NewString("WATCHLIST", "PROXY", "proxy", "CONNECT")
|
||||
ignoredVerbs := sets.NewString("WATCH", "WATCHLIST", "PROXY", "proxy", "CONNECT")
|
||||
|
||||
for _, sample := range samples {
|
||||
// Example line:
|
||||
|
|
|
|||
Loading…
Reference in a new issue