plotting_configurations.py
1 plotting_config = { 2 "container_cpu_load_average_10s": { 3 "title": "Peak CPU Usage (per node)", 4 "y_label": "CPU Usage (%)", 5 "statistic": "max", 6 "toMB": False 7 }, 8 "container_memory_usage_bytes": { 9 "title": "Peak Memory Usage (per node)", 10 "y_label": "Memory (MBytes)", 11 "statistic": "max", 12 "toMB": True 13 }, 14 "container_network_receive_bytes_total": { 15 "title": "Total Netowrk IO (per node)", 16 "y_label": "Bandwidth (MBytes)", 17 "xtic_labels": [ 18 "Received (Rx)" 19 ], 20 "statistic": "max", 21 "toMB": True 22 }, 23 "container_network_transmit_bytes_total": { 24 "title": "Total Netowrk IO (per node)", 25 "y_label": "Bandwidth (MBytes)", 26 "metric_name": [ 27 "container_network_transmit_bytes_total" 28 ], 29 "xtic_labels": [ 30 "Sent (Tx)" 31 ], 32 "statistic": "max", 33 "toMB": True 34 }, 35 "container_fs_reads_bytes_total": { 36 "title": "Peak Disk IO (per node)", 37 "y_label": "Disk IO (MBytes)", 38 "metric_name": [ 39 "container_fs_reads_bytes_total" 40 ], 41 "xtic_labels": [ 42 "Read" 43 ], 44 "statistic": "max", 45 "toMB": True 46 }, 47 "container_fs_writes_bytes_total": { 48 "title": "Peak Disk IO (per node)", 49 "y_label": "Disk IO (MBytes)", 50 "metric_name": [ 51 "container_fs_writes_bytes_total" 52 ], 53 "xtic_labels": [ 54 "Write" 55 ], 56 "statistic": "max", 57 "toMB": True 58 } 59 }