2019-10-21 14:50:16 +02:00
|
|
|
{
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
2021-12-02 10:45:01 +01:00
|
|
|
"title": "Job metric data list",
|
|
|
|
"description": "Collection of metric data of a HPC job",
|
2019-10-21 14:50:16 +02:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"mem_used": {
|
|
|
|
"description": "Memory capacity used (required)",
|
2021-12-17 09:38:41 +01:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
|
|
|
"flops_any": {
|
|
|
|
"description": "Total flop rate with DP flops scaled up (required)",
|
2021-12-17 09:38:41 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"socket": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"memoryDomain": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"core": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"hwthread": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
|
|
|
"mem_bw": {
|
|
|
|
"description": "Main memory bandwidth (required)",
|
2021-12-17 09:38:41 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"socket": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"memoryDomain": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
|
|
|
"net_bw": {
|
|
|
|
"description": "Total fast interconnect network bandwidth (required)",
|
2021-12-17 09:38:41 +01:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
|
|
|
"file_bw": {
|
|
|
|
"description": "Total file IO bandwidth (required)",
|
2021-12-17 09:38:41 +01:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
|
|
|
"ipc": {
|
|
|
|
"description": "Instructions executed per cycle",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"socket": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"memoryDomain": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"core": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"hwthread": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
|
|
|
"cpu_used": {
|
2021-12-02 10:45:01 +01:00
|
|
|
"description": "CPU active core utilization",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"socket": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"memoryDomain": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"core": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"hwthread": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2021-12-02 10:45:01 +01:00
|
|
|
},
|
|
|
|
"cpu_load": {
|
|
|
|
"description": "CPU requested core utilization (load 1m)",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"socket": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"memoryDomain": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"core": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"hwthread": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
|
|
|
"flops_dp": {
|
|
|
|
"description": "Double precision flop rate",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"socket": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"memoryDomain": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"core": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"hwthread": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
|
|
|
"flops_sp": {
|
|
|
|
"description": "Single precision flops rate",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"socket": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"memoryDomain": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"core": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"hwthread": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"vectorization_ratio": {
|
|
|
|
"description": "Fraction of arithmetic instructions using SIMD instructions",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"socket": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"memoryDomain": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"core": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"hwthread": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2021-12-02 10:45:01 +01:00
|
|
|
},
|
|
|
|
"cpu_power": {
|
2019-10-21 14:50:16 +02:00
|
|
|
"description": "CPU power consumption",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"socket": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"mem_power": {
|
|
|
|
"description": "Memory power consumption",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"socket": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2021-12-02 10:45:01 +01:00
|
|
|
},
|
|
|
|
"acc_utilization": {
|
2019-10-21 14:50:16 +02:00
|
|
|
"description": "GPU utilization",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"accelerator": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"acc_mem_used": {
|
2019-10-21 14:50:16 +02:00
|
|
|
"description": "GPU memory capacity used",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"accelerator": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"acc_power": {
|
2019-10-21 14:50:16 +02:00
|
|
|
"description": "GPU power consumption",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"accelerator": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
|
|
|
"clock": {
|
|
|
|
"description": "Average core frequency",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"socket": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"memoryDomain": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"core": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
},
|
|
|
|
"hwthread": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
|
|
|
"eth_read_bw": {
|
|
|
|
"description": "Ethernet read bandwidth",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
|
|
|
"eth_write_bw": {
|
|
|
|
"description": "Ethernet write bandwidth",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"pfs_read_bw": {
|
|
|
|
"description": "Parallel file system read bandwidth",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2021-12-02 10:45:01 +01:00
|
|
|
},
|
|
|
|
"pfs_write_bw": {
|
|
|
|
"description": "Parallel file system write bandwidth",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2021-12-02 10:45:01 +01:00
|
|
|
},
|
|
|
|
"pfs_read_req": {
|
|
|
|
"description": "Parallel file system read requests",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2021-12-02 10:45:01 +01:00
|
|
|
},
|
|
|
|
"pfs_write_req": {
|
|
|
|
"description": "Parallel file system write requests",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2021-12-02 10:45:01 +01:00
|
|
|
},
|
|
|
|
"pfs_inodes": {
|
|
|
|
"description": "Parallel file system inodes used",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2021-12-02 10:45:01 +01:00
|
|
|
},
|
|
|
|
"pfs_accesses": {
|
|
|
|
"description": "Parallel file system open and close",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"pfs_fsync": {
|
|
|
|
"description": "Parallel file system fsync",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"pfs_create": {
|
|
|
|
"description": "Parallel file system create",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"pfs_open": {
|
|
|
|
"description": "Parallel file system open",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"pfs_close": {
|
|
|
|
"description": "Parallel file system close",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"pfs_seek": {
|
|
|
|
"description": "Parallel file system seek",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"fs_read_bw": {
|
|
|
|
"description": "Local file system read bandwidth",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"fs_write_bw": {
|
|
|
|
"description": "Local file system write bandwidth",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"fs_inodes": {
|
|
|
|
"description": "Local file system inodes used",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"fs_accesses": {
|
|
|
|
"description": "Local file system open and close",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"ic_rcv_packets": {
|
|
|
|
"description": "Network interconnect read packets",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"ic_send_packets": {
|
|
|
|
"description": "Network interconnect send packet",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"ic_read_bw": {
|
|
|
|
"description": "Network interconnect read bandwidth",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
},
|
2021-12-02 10:45:01 +01:00
|
|
|
"ic_write_bw": {
|
|
|
|
"description": "Network interconnect write bandwidth",
|
2022-01-10 14:31:40 +01:00
|
|
|
"properties": {
|
|
|
|
"node": {
|
|
|
|
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
|
|
|
|
}
|
2022-01-14 20:33:18 +01:00
|
|
|
},
|
|
|
|
"required": [
|
2022-03-10 11:47:10 +01:00
|
|
|
"node"
|
2022-01-14 20:33:18 +01:00
|
|
|
]
|
2019-10-21 14:50:16 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
2021-11-29 10:26:00 +01:00
|
|
|
"cpu_used",
|
2019-10-21 14:50:16 +02:00
|
|
|
"mem_used",
|
|
|
|
"flops_any",
|
|
|
|
"mem_bw",
|
|
|
|
"net_bw",
|
|
|
|
"file_bw"
|
|
|
|
]
|
|
|
|
}
|