mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
add fallback for acc metrics only on node level
This commit is contained in:
parent
8a473de793
commit
298051c334
@ -34,6 +34,7 @@
|
|||||||
export let roles;
|
export let roles;
|
||||||
|
|
||||||
const accMetrics = ['acc_utilization', 'acc_mem_used', 'acc_power', 'nv_mem_util', 'nv_sm_clock', 'nv_temp'];
|
const accMetrics = ['acc_utilization', 'acc_mem_used', 'acc_power', 'nv_mem_util', 'nv_sm_clock', 'nv_temp'];
|
||||||
|
let accNodeOnly
|
||||||
|
|
||||||
const { query: initq } = init(`
|
const { query: initq } = init(`
|
||||||
job(id: "${dbid}") {
|
job(id: "${dbid}") {
|
||||||
@ -78,7 +79,7 @@
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
// Select default Scopes to load: Check before if accelerator metrics are not on accelerator scope by default
|
// Select default Scopes to load: Check before if accelerator metrics are not on accelerator scope by default
|
||||||
const accNodeOnly = [...toFetch].some(function(m) {
|
accNodeOnly = [...toFetch].some(function(m) {
|
||||||
if (accMetrics.includes(m)) {
|
if (accMetrics.includes(m)) {
|
||||||
const mc = metrics(job.cluster, m)
|
const mc = metrics(job.cluster, m)
|
||||||
return mc.scope !== 'accelerator'
|
return mc.scope !== 'accelerator'
|
||||||
@ -398,6 +399,7 @@
|
|||||||
job={$initq.data.job}
|
job={$initq.data.job}
|
||||||
jobMetrics={$jobMetrics.data.jobMetrics}
|
jobMetrics={$jobMetrics.data.jobMetrics}
|
||||||
accMetrics={accMetrics}
|
accMetrics={accMetrics}
|
||||||
|
accNodeOnly={accNodeOnly}
|
||||||
/>
|
/>
|
||||||
{/key}
|
{/key}
|
||||||
{/if}
|
{/if}
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
export let job
|
export let job
|
||||||
export let jobMetrics
|
export let jobMetrics
|
||||||
export let accMetrics
|
export let accMetrics
|
||||||
|
export let accNodeOnly
|
||||||
|
|
||||||
const allMetrics = [...new Set(jobMetrics.map(m => m.name))].sort(),
|
const allMetrics = [...new Set(jobMetrics.map(m => m.name))].sort(),
|
||||||
scopesForMetric = (metric) => jobMetrics
|
scopesForMetric = (metric) => jobMetrics
|
||||||
@ -20,11 +21,19 @@
|
|||||||
isMetricSelectionOpen = false,
|
isMetricSelectionOpen = false,
|
||||||
selectedMetrics = getContext('cc-config')[`job_view_nodestats_selectedMetrics:${job.cluster}`]
|
selectedMetrics = getContext('cc-config')[`job_view_nodestats_selectedMetrics:${job.cluster}`]
|
||||||
|| getContext('cc-config')['job_view_nodestats_selectedMetrics']
|
|| getContext('cc-config')['job_view_nodestats_selectedMetrics']
|
||||||
|
|
||||||
for (let metric of allMetrics) {
|
for (let metric of allMetrics) {
|
||||||
selectedScopes[metric] = (job.exclusive != 1 || job.numNodes == 1) ?
|
// Not Exclusive or Single Node: Get maxScope()
|
||||||
(job.numAccs != 0 && accMetrics.includes(metric)) ? 'accelerator' : 'core'
|
// No Accelerators in Job and not Acc-Metric: Use 'core'
|
||||||
: maxScope(scopesForMetric(metric))
|
// Accelerator Metric available on accelerator scope: Use 'accelerator'
|
||||||
|
// Accelerator Metric only on node scope: Fallback to 'node'
|
||||||
|
selectedScopes[metric] = (job.exclusive != 1 || job.numNodes == 1) ?
|
||||||
|
(job.numAccs != 0 && accMetrics.includes(metric)) ?
|
||||||
|
accNodeOnly ?
|
||||||
|
'node'
|
||||||
|
: 'accelerator'
|
||||||
|
: 'core'
|
||||||
|
: maxScope(scopesForMetric(metric))
|
||||||
sorting[metric] = {
|
sorting[metric] = {
|
||||||
min: { dir: 'up', active: false },
|
min: { dir: 'up', active: false },
|
||||||
avg: { dir: 'up', active: false },
|
avg: { dir: 'up', active: false },
|
||||||
|
Loading…
Reference in New Issue
Block a user