mirror of
https://github.com/ClusterCockpit/cc-specifications.git
synced 2024-11-10 01:37:25 +01:00
Fix cluster.json
Add missing braces. Remove null value from aggregation enum. Make aggregation optional. Add required properties.
This commit is contained in:
parent
074ececbf8
commit
25cedadc4c
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
"title": "HPC Cluster description",
|
"title": "HPC cluster description",
|
||||||
"description": "Meta data information of a HPC cluster",
|
"description": "Meta data information of a HPC cluster",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties":{
|
"properties":{
|
||||||
@ -60,13 +60,12 @@
|
|||||||
"type": "string",
|
"type": "string",
|
||||||
"enum": [
|
"enum": [
|
||||||
"sum",
|
"sum",
|
||||||
"avg",
|
"avg"
|
||||||
null
|
|
||||||
]
|
]
|
||||||
|
|
||||||
},
|
},
|
||||||
"subClusters": {
|
"subClusters": {
|
||||||
"description": "Array of cluster hardware partition metric thresholds",
|
"description": "Array of cluster hardware partition metric thresholds",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
@ -87,10 +86,22 @@
|
|||||||
"alert": {
|
"alert": {
|
||||||
"type": "number"
|
"type": "number"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"required": [
|
||||||
|
"name",
|
||||||
|
"peak",
|
||||||
|
"caution",
|
||||||
|
"alert"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"required": [
|
||||||
|
"name",
|
||||||
|
"unit",
|
||||||
|
"scope",
|
||||||
|
"timestep"
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"subClusters": {
|
"subClusters": {
|
||||||
"description": "Array of cluster hardware partitions",
|
"description": "Array of cluster hardware partitions",
|
||||||
@ -239,6 +250,10 @@
|
|||||||
"name",
|
"name",
|
||||||
"metricDataRepository",
|
"metricDataRepository",
|
||||||
"metricConfig",
|
"metricConfig",
|
||||||
"partitions"
|
"subClusters"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user