mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-02 19:28:16 +00:00
Adjust kubelet_cgroup_manager_duration_seconds bucket
This commit is contained in:
@@ -92,13 +92,13 @@ var (
|
|||||||
},
|
},
|
||||||
[]string{NodeLabelKey},
|
[]string{NodeLabelKey},
|
||||||
)
|
)
|
||||||
// ContainersPerPodCount is a Counter that tracks the number of containers per pod.
|
// ContainersPerPodCount is a Histogram that tracks the number of containers per pod.
|
||||||
ContainersPerPodCount = metrics.NewHistogram(
|
ContainersPerPodCount = metrics.NewHistogram(
|
||||||
&metrics.HistogramOpts{
|
&metrics.HistogramOpts{
|
||||||
Subsystem: KubeletSubsystem,
|
Subsystem: KubeletSubsystem,
|
||||||
Name: "containers_per_pod_count",
|
Name: "containers_per_pod_count",
|
||||||
Help: "The number of containers per pod.",
|
Help: "The number of containers per pod.",
|
||||||
Buckets: metrics.DefBuckets,
|
Buckets: metrics.ExponentialBuckets(1, 2, 5),
|
||||||
StabilityLevel: metrics.ALPHA,
|
StabilityLevel: metrics.ALPHA,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user