mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
190 lines
2.7 KiB
GraphQL
190 lines
2.7 KiB
GraphQL
type Job {
|
|
id: ID!
|
|
|
|
jobId: String!
|
|
userId: String!
|
|
projectId: String!
|
|
clusterId: String!
|
|
startTime: Time!
|
|
duration: Int!
|
|
numNodes: Int!
|
|
hasProfile: Boolean!
|
|
|
|
loadAvg: Float
|
|
memUsedMax: Float
|
|
flopsAnyAvg: Float
|
|
memBwAvg: Float
|
|
netBwAvg: Float
|
|
fileBwAvg: Float
|
|
|
|
tags: [JobTag!]
|
|
}
|
|
|
|
type Cluster {
|
|
clusterID: String!
|
|
processorType: String!
|
|
socketsPerNode: Int!
|
|
coresPerSocket: Int!
|
|
threadsPerCore: Int!
|
|
flopRateScalar: Int!
|
|
flopRateSimd: Int!
|
|
memoryBandwidth: Int!
|
|
metricConfig: [MetricConfig!]!
|
|
filterRanges: FilterRanges!
|
|
}
|
|
|
|
type MetricConfig {
|
|
name: String!
|
|
unit: String!
|
|
sampletime: Int!
|
|
peak: Int!
|
|
normal: Int!
|
|
caution: Int!
|
|
alert: Int!
|
|
}
|
|
|
|
type JobMetric {
|
|
unit: String!
|
|
scope: JobMetricScope!
|
|
timestep: Int!
|
|
series: [JobMetricSeries]!
|
|
}
|
|
|
|
enum JobMetricScope {
|
|
node
|
|
cpu
|
|
socket
|
|
}
|
|
|
|
type JobMetricSeries {
|
|
node_id: String!
|
|
statistics: JobMetricStatistics
|
|
data: [Float]!
|
|
}
|
|
|
|
type JobMetricStatistics {
|
|
avg: Float!
|
|
min: Float!
|
|
max: Float!
|
|
}
|
|
|
|
type JobTag {
|
|
id: ID!
|
|
tagType: String!
|
|
tagName: String!
|
|
}
|
|
|
|
type Query {
|
|
clusters: [Cluster!]!
|
|
|
|
jobById(jobId: String!): Job
|
|
jobs(filter: JobFilterList, page: PageRequest, order: OrderByInput): JobResultList!
|
|
jobsStatistics(filter: JobFilterList): JobsStatistics!
|
|
jobMetrics(jobId: String!, clusterId: String, startTime: Time, metrics: [String]): [JobMetricWithName]!
|
|
|
|
tags: [JobTag!]!
|
|
|
|
filterRanges: FilterRanges!
|
|
}
|
|
|
|
input JobFilterList {
|
|
list: [JobFilter]
|
|
}
|
|
|
|
input JobFilter {
|
|
tags: [ID!]
|
|
jobId: StringInput
|
|
userId: StringInput
|
|
projectId: StringInput
|
|
clusterId: StringInput
|
|
duration: IntRange
|
|
numNodes: IntRange
|
|
startTime: TimeRange
|
|
hasProfile: Boolean
|
|
flopsAnyAvg: FloatRange
|
|
memBwAvg: FloatRange
|
|
loadAvg: FloatRange
|
|
memUsedMax: FloatRange
|
|
}
|
|
|
|
type IntRangeOutput {
|
|
from: Int!
|
|
to: Int!
|
|
}
|
|
|
|
type TimeRangeOutput {
|
|
from: Time!
|
|
to: Time!
|
|
}
|
|
|
|
type FilterRanges {
|
|
duration: IntRangeOutput!
|
|
numNodes: IntRangeOutput!
|
|
startTime: TimeRangeOutput!
|
|
}
|
|
|
|
input OrderByInput {
|
|
field: String!
|
|
order: SortDirectionEnum = ASC
|
|
}
|
|
|
|
enum SortDirectionEnum {
|
|
DESC
|
|
ASC
|
|
}
|
|
|
|
input StringInput {
|
|
eq: String
|
|
contains: String
|
|
startsWith: String
|
|
endsWith: String
|
|
}
|
|
|
|
input IntRange {
|
|
from: Int!
|
|
to: Int!
|
|
}
|
|
|
|
input FloatRange {
|
|
from: Float!
|
|
to: Float!
|
|
}
|
|
|
|
input TimeRange {
|
|
from: Time!
|
|
to: Time!
|
|
}
|
|
|
|
type JobResultList {
|
|
items: [Job]!
|
|
offset: Int
|
|
limit: Int
|
|
count: Int
|
|
}
|
|
|
|
type JobMetricWithName {
|
|
name: String!
|
|
metric: JobMetric!
|
|
}
|
|
|
|
type HistoPoint {
|
|
count: Int!
|
|
value: Int!
|
|
}
|
|
|
|
type JobsStatistics {
|
|
totalJobs: Int!
|
|
shortJobs: Int!
|
|
totalWalltime: Int!
|
|
totalCoreHours: Int!
|
|
histWalltime: [HistoPoint]!
|
|
histNumNodes: [HistoPoint]!
|
|
}
|
|
|
|
input PageRequest {
|
|
itemsPerPage: Int
|
|
page: Int
|
|
}
|
|
|
|
scalar Time
|