add memUsed_max, flopsAny_avg, ... to Job type

This commit is contained in:
Lou Knauer
2021-04-14 17:57:19 +02:00
parent 7e32855030
commit bbb3281b6a
2 changed files with 297 additions and 8 deletions

View File

@@ -1,4 +1,6 @@
type Job {
id: ID!
jobId: String!
userId: String!
projectId: String!
@@ -7,6 +9,12 @@ type Job {
duration: Int!
numNodes: Int!
hasProfile: Boolean!
memUsed_max: Float
flopsAny_avg: Float
memBw_avg: Float
netBw_avg: Float
fileBw_avg: Float
}
type JobMetric {