Skip to content

Commit

Permalink
Remove buckets from histogram metric (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristinaleonr authored Nov 14, 2022
1 parent 934ebb9 commit a92b36b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions metrics/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,8 @@ var (
// Service to the Kubernetes API server (in seconds).
KubernetesRequestTimeHistogram = promauto.NewHistogramVec(
prometheus.HistogramOpts{
Name: "heartbeat_kubernetes_request_time_histogram",
Help: "Request time from the HBS to the Kubernetes API server (seconds)",
Buckets: []float64{1, 2, 3, 4, 5, 6, 7, 8, 9, 10},
Name: "heartbeat_kubernetes_request_time_histogram",
Help: "Request time from the HBS to the Kubernetes API server (seconds)",
},
[]string{"healthy"},
)
Expand Down

0 comments on commit a92b36b

Please sign in to comment.