File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
pkg/controller/volume/scheduling/metrics Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ go_library(
8
8
deps = [
9
9
"//staging/src/k8s.io/component-base/metrics:go_default_library" ,
10
10
"//staging/src/k8s.io/component-base/metrics/legacyregistry:go_default_library" ,
11
- "//vendor/github.com/prometheus/client_golang/prometheus:go_default_library" ,
12
11
],
13
12
)
14
13
Original file line number Diff line number Diff line change @@ -17,8 +17,6 @@ limitations under the License.
17
17
package metrics
18
18
19
19
import (
20
- "github.com/prometheus/client_golang/prometheus"
21
-
22
20
"k8s.io/component-base/metrics"
23
21
"k8s.io/component-base/metrics/legacyregistry"
24
22
)
43
41
Subsystem : VolumeSchedulerSubsystem ,
44
42
Name : "scheduling_duration_seconds" ,
45
43
Help : "Volume scheduling stage latency" ,
46
- Buckets : prometheus .ExponentialBuckets (1000 , 2 , 15 ),
44
+ Buckets : metrics .ExponentialBuckets (1000 , 2 , 15 ),
47
45
StabilityLevel : metrics .ALPHA ,
48
46
},
49
47
[]string {"operation" },
You can’t perform that action at this time.
0 commit comments