mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-05 15:37:24 +00:00
Expose information about scheduling latency in scalability tests.
This commit is contained in:
@@ -31,6 +31,7 @@ var (
|
||||
Subsystem: schedulerSubsystem,
|
||||
Name: "e2e_scheduling_latency_microseconds",
|
||||
Help: "E2e scheduling latency (scheduling algorithm + binding)",
|
||||
MaxAge: time.Hour,
|
||||
},
|
||||
)
|
||||
SchedulingAlgorithmLatency = prometheus.NewSummary(
|
||||
@@ -38,6 +39,7 @@ var (
|
||||
Subsystem: schedulerSubsystem,
|
||||
Name: "scheduling_algorithm_latency_microseconds",
|
||||
Help: "Scheduling algorithm latency",
|
||||
MaxAge: time.Hour,
|
||||
},
|
||||
)
|
||||
BindingLatency = prometheus.NewSummary(
|
||||
@@ -45,6 +47,7 @@ var (
|
||||
Subsystem: schedulerSubsystem,
|
||||
Name: "binding_latency_microseconds",
|
||||
Help: "Binding latency",
|
||||
MaxAge: time.Hour,
|
||||
},
|
||||
)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user