SubCluster-specific thresholds

This commit is contained in:
Lou Knauer
2022-05-12 09:20:38 +02:00
parent f15a8cf7e3
commit 515fdbd44c
4 changed files with 452 additions and 49 deletions

View File

@@ -68,16 +68,25 @@ type Accelerator {
model: String!
}
type SubClusterConfig {
name: String!
peak: Float!
normal: Float!
caution: Float!
alert: Float!
}
type MetricConfig {
name: String!
unit: String!
scope: MetricScope!
aggregation: String
timestep: Int!
peak: Float!
normal: Float!
caution: Float!
alert: Float!
peak: Float
normal: Float
caution: Float
alert: Float
subClusters: [SubClusterConfig]
}
type Tag {