cc-specifications/schema/json/job-data.schema.json

169 lines
8.6 KiB
JSON
Raw Normal View History

2019-10-21 14:50:16 +02:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"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-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"flops_any": {
"description": "Total flop rate with DP flops scaled up (required)",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"mem_bw": {
"description": "Main memory bandwidth (required)",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"net_bw": {
"description": "Total fast interconnect network bandwidth (required)",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"file_bw": {
"description": "Total file IO bandwidth (required)",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"ipc": {
"description": "Instructions executed per cycle",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"cpu_used": {
"description": "CPU active core utilization",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
},
"cpu_load": {
"description": "CPU requested core utilization (load 1m)",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"flops_dp": {
"description": "Double precision flop rate",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"flops_sp": {
"description": "Single precision flops rate",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"vectorization_ratio": {
"description": "Fraction of arithmetic instructions using SIMD instructions",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
},
"cpu_power": {
2019-10-21 14:50:16 +02:00
"description": "CPU power consumption",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"mem_power": {
"description": "Memory power consumption",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
},
"acc_utilization": {
2019-10-21 14:50:16 +02:00
"description": "GPU utilization",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"acc_mem_used": {
2019-10-21 14:50:16 +02:00
"description": "GPU memory capacity used",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"acc_power": {
2019-10-21 14:50:16 +02:00
"description": "GPU power consumption",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"clock": {
"description": "Average core frequency",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"eth_read_bw": {
"description": "Ethernet read bandwidth",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"eth_write_bw": {
"description": "Ethernet write bandwidth",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"pfs_read_bw": {
"description": "Parallel file system read bandwidth",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
},
"pfs_write_bw": {
"description": "Parallel file system write bandwidth",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
},
"pfs_read_req": {
"description": "Parallel file system read requests",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
},
"pfs_write_req": {
"description": "Parallel file system write requests",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
},
"pfs_inodes": {
"description": "Parallel file system inodes used",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
},
"pfs_accesses": {
"description": "Parallel file system open and close",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"pfs_fsync": {
"description": "Parallel file system fsync",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"pfs_create": {
"description": "Parallel file system create",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"pfs_open": {
"description": "Parallel file system open",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"pfs_close": {
"description": "Parallel file system close",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"pfs_seek": {
"description": "Parallel file system seek",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"fs_read_bw": {
"description": "Local file system read bandwidth",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"fs_write_bw": {
"description": "Local file system write bandwidth",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"fs_inodes": {
"description": "Local file system inodes used",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"fs_accesses": {
"description": "Local file system open and close",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"ic_rcv_packets": {
"description": "Network interconnect read packets",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"ic_send_packets": {
"description": "Network interconnect send packet",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"ic_read_bw": {
"description": "Network interconnect read bandwidth",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
},
"ic_write_bw": {
"description": "Network interconnect write bandwidth",
2021-12-16 08:10:36 +01:00
"#ref": "https://github.com/ClusterCockpit/cc-specifications/blob/master/schema/json/job-metric-data.schema.json"
2019-10-21 14:50:16 +02:00
}
},
"required": [
"cpu_used",
2019-10-21 14:50:16 +02:00
"mem_used",
"flops_any",
"mem_bw",
"net_bw",
"file_bw"
]
}