Skip to content

Commit

Permalink
Scheduler: follow naming conventions for metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
mtds committed Jul 21, 2020
1 parent c97256d commit 55b177b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scheduler.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,17 +233,17 @@ func NewSchedulerCollector() *SchedulerCollector {
nil,
nil),
total_backfilled_jobs_since_start: prometheus.NewDesc(
"slurm_backfilled_jobs_since_start_total",
"slurm_scheduler_backfilled_jobs_since_start_total",
"Information provided by the Slurm sdiag command, number of jobs started thanks to backfilling since last slurm start",
nil,
nil),
total_backfilled_jobs_since_cycle: prometheus.NewDesc(
"slurm_backfilled_jobs_since_cycle_total",
"slurm_scheduler_backfilled_jobs_since_cycle_total",
"Information provided by the Slurm sdiag command, number of jobs started thanks to backfilling since last time stats where reset",
nil,
nil),
total_backfilled_heterogeneous: prometheus.NewDesc(
"slurm_backfilled_heterogeneous_total",
"slurm_scheduler_backfilled_heterogeneous_total",
"Information provided by the Slurm sdiag command, number of heterogeneous job components started thanks to backfilling since last Slurm start",
nil,
nil),
Expand Down

0 comments on commit 55b177b

Please sign in to comment.