Rename histWalltime to histDuration; Fix for running jobs

This commit is contained in:
Lou Knauer
2022-03-31 09:44:26 +02:00
parent 27b3d78f6e
commit b47d175ab2
5 changed files with 20 additions and 18 deletions

View File

@@ -256,7 +256,7 @@ type JobsStatistics {
shortJobs: Int! # Number of jobs with a duration of less than 2 minutes
totalWalltime: Int! # Sum of the duration of all matched jobs in hours
totalCoreHours: Int! # Sum of the core hours of all matched jobs
histWalltime: [HistoPoint!]! # value: hour, count: number of jobs with a rounded duration of value
histDuration: [HistoPoint!]! # value: hour, count: number of jobs with a rounded duration of value
histNumNodes: [HistoPoint!]! # value: number of nodes, count: number of jobs with that number of nodes
}