Add subclusters for metric thresholds.

This commit is contained in:
Jan Eitzinger 2022-05-06 08:53:08 +02:00
parent 4cc0de630f
commit ec2b32d25c

View File

@ -65,17 +65,30 @@
]
},
"peak": {
"type": "number"
},
"normal": {
"type": "number"
},
"caution": {
"type": "number"
},
"alert": {
"type": "number"
"subClusters": {
"description": "Array of cluster hardware partition metric thresholds",
"type": "array",
"items": {
"type": "object",
"properties":{
"name": {
"description": "Hardware partition name",
"type": "string"
},
"peak": {
"type": "number"
},
"normal": {
"type": "number"
},
"caution": {
"type": "number"
},
"alert": {
"type": "number"
}
}
}
}
}
},