Fix suggestions, track removed library in bazel

This commit is contained in:
obitech
2019-04-07 22:48:15 +02:00
parent 898c40a484
commit 457972f1a4
4 changed files with 5 additions and 6 deletions

View File

@@ -86,7 +86,7 @@ const (
)
var (
// NodeName is a Gauge that tracks the name of the assigned via the label "node_key".
// NodeName is a Gauge that tracks the ode's name. The count is always 1.
NodeName = prometheus.NewGaugeVec(
prometheus.GaugeOpts{
Subsystem: KubeletSubsystem,
@@ -115,7 +115,7 @@ var (
},
[]string{"operation_type"},
)
// PodStartDuration is a Histogram that tracks the duration (in seconds) it takes for single pod to go from pending to running.
// PodStartDuration is a Histogram that tracks the duration (in seconds) it takes for a single pod to go from pending to running.
PodStartDuration = prometheus.NewHistogram(
prometheus.HistogramOpts{
Subsystem: KubeletSubsystem,