Handle artifacts, fix single node footprint flops

This commit is contained in:
Christoph Kluge
2023-11-21 10:27:16 +01:00
parent f8f900151a
commit dc860f8fd9
2 changed files with 74 additions and 10 deletions

View File

@@ -74,8 +74,10 @@
let queryMetrics = null
$: if (showFootprint) {
queryMetrics = ['cpu_load', 'flops_any', 'mem_used', 'mem_bw', ...metrics].filter(distinct)
scopes = ["node"]
} else {
queryMetrics = [...metrics]
scopes = [job.numNodes == 1 ? "core" : "node"]
}
export function refresh() {