mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
69 lines
2.3 KiB
JSON
69 lines
2.3 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"$id": "https://github.com/RRZE-HPC/HPCJobDatabase/blob/master/json-schema/job-metric.schema.json",
|
|
"title": "Job metric data",
|
|
"description": "Metric data of a HPC job",
|
|
"type": "object",
|
|
"properties": {
|
|
"unit": {
|
|
"description": "",
|
|
"type": "string"
|
|
},
|
|
"scope": {
|
|
"description": "",
|
|
"type": "string",
|
|
"enum": [ "node", "cpu", "socket" ]
|
|
},
|
|
"timestep": {
|
|
"description": "",
|
|
"type": "integer"
|
|
},
|
|
"series": {
|
|
"description": "",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"node_id": {
|
|
"type": "string"
|
|
},
|
|
"id": {
|
|
"type": "integer"
|
|
},
|
|
"statistic": {
|
|
"type": "object",
|
|
"properties": {
|
|
"avg": {
|
|
"description": "Series average",
|
|
"type": "number",
|
|
"minimum": 0
|
|
},
|
|
"min": {
|
|
"description": "Series minimum",
|
|
"type": "number",
|
|
"minimum": 0
|
|
},
|
|
"max": {
|
|
"description": "Series maximum",
|
|
"type": "number",
|
|
"minimum": 0
|
|
}
|
|
},
|
|
"required": [ "avg", "min", "max" ]
|
|
},
|
|
"data": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "number",
|
|
"minimum": 0
|
|
},
|
|
"minItems": 1
|
|
}
|
|
},
|
|
"required": [ "node_id", "data" ]
|
|
}
|
|
}
|
|
},
|
|
"required": [ "unit", "scope", "timestep", "series" ]
|
|
}
|