remove StartedPodsErrorsTotal metrice message

Signed-off-by: yxxhero <aiopsclub@163.com>
This commit is contained in:
yxxhero
2021-09-23 22:18:56 +08:00
parent bbd809cbd0
commit 35df409a7e
2 changed files with 2 additions and 3 deletions

View File

@@ -460,14 +460,13 @@ var (
},
)
// StartedPodsErrorsTotal is a counter that tracks the number of errors creating pod sandboxes
StartedPodsErrorsTotal = metrics.NewCounterVec(
StartedPodsErrorsTotal = metrics.NewCounter(
&metrics.CounterOpts{
Subsystem: KubeletSubsystem,
Name: StartedPodsErrorsTotalKey,
Help: "Cumulative number of errors when starting pods",
StabilityLevel: metrics.ALPHA,
},
[]string{"message"},
)
// StartedContainersTotal is a counter that tracks the number of container creation operations
StartedContainersTotal = metrics.NewCounterVec(