mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
Fix metric type for NumSpilledTasks to gauge (#23391)
The metric type for NumSpilledTasks should be gauge since the sum already happens in SchedulerStats.
This commit is contained in:
parent
bab19e8e68
commit
dfebf7ffae
1 changed files with 4 additions and 4 deletions
|
@ -195,10 +195,10 @@ static Sum NumWorkersStarted(
|
|||
"The total number of worker processes the worker pool has created.",
|
||||
"processes");
|
||||
|
||||
static Sum NumSpilledTasks("internal_num_spilled_tasks",
|
||||
"The cumulative number of lease requeusts that this raylet "
|
||||
"has spilled to other raylets.",
|
||||
"tasks");
|
||||
static Gauge NumSpilledTasks("internal_num_spilled_tasks",
|
||||
"The cumulative number of lease requeusts that this raylet "
|
||||
"has spilled to other raylets.",
|
||||
"tasks");
|
||||
|
||||
static Gauge NumInfeasibleSchedulingClasses(
|
||||
"internal_num_infeasible_scheduling_classes",
|
||||
|
|
Loading…
Add table
Reference in a new issue