mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2024-11-10 08:57:25 +01:00
fix new data reactivity for accelerators
This commit is contained in:
parent
613e128cab
commit
599a36466a
@ -18,7 +18,6 @@
|
|||||||
gql,
|
gql,
|
||||||
getContextClient
|
getContextClient
|
||||||
} from "@urql/svelte";
|
} from "@urql/svelte";
|
||||||
// import { createEventDispatcher } from "svelte";
|
|
||||||
import {
|
import {
|
||||||
InputGroup,
|
InputGroup,
|
||||||
InputGroupText,
|
InputGroupText,
|
||||||
@ -44,11 +43,10 @@
|
|||||||
let selectedResolution;
|
let selectedResolution;
|
||||||
let pendingResolution = 600;
|
let pendingResolution = 600;
|
||||||
let selectedScopeIndex = scopes.findIndex((s) => s == minScope(scopes));
|
let selectedScopeIndex = scopes.findIndex((s) => s == minScope(scopes));
|
||||||
const statsPattern = /(.*)-stat$/;
|
|
||||||
let patternMatches = false;
|
let patternMatches = false;
|
||||||
let statsSeries = rawData.map((data) => data?.statisticsSeries ? data.statisticsSeries : null);
|
let statsSeries = rawData.map((data) => data?.statisticsSeries ? data.statisticsSeries : null);
|
||||||
|
|
||||||
// const dispatch = createEventDispatcher();
|
const statsPattern = /(.*)-stat$/;
|
||||||
const unit = (metricUnit?.prefix ? metricUnit.prefix : "") + (metricUnit?.base ? metricUnit.base : "");
|
const unit = (metricUnit?.prefix ? metricUnit.prefix : "") + (metricUnit?.base ? metricUnit.base : "");
|
||||||
const resolutions = [600, 240, 60] // DEV: Make configable
|
const resolutions = [600, 240, 60] // DEV: Make configable
|
||||||
const client = getContextClient();
|
const client = getContextClient();
|
||||||
@ -89,21 +87,23 @@
|
|||||||
const selectedMetrics = [metricName]
|
const selectedMetrics = [metricName]
|
||||||
|
|
||||||
$: if (selectedScope || pendingResolution) {
|
$: if (selectedScope || pendingResolution) {
|
||||||
|
|
||||||
if (selectedScope == "load-all") {
|
|
||||||
selectedScopes = [...scopes, "socket", "core"]
|
|
||||||
}
|
|
||||||
|
|
||||||
// What if accelerator scope / native core scopes?
|
|
||||||
if ((selectedResolution !== pendingResolution) && selectedScopes.length >= 2) {
|
|
||||||
selectedScope = String("node")
|
|
||||||
selectedScopes = ["node"]
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!selectedResolution) {
|
if (!selectedResolution) {
|
||||||
// Skips reactive data load on init
|
// Skips reactive data load on init
|
||||||
selectedResolution = Number(pendingResolution)
|
selectedResolution = Number(pendingResolution)
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
if (selectedScope == "load-all") {
|
||||||
|
selectedScopes = [...scopes, "socket", "core", "accelerator"]
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((selectedResolution !== pendingResolution) && selectedScopes.length >= 2) {
|
||||||
|
selectedScope = String("node")
|
||||||
|
selectedScopes = ["node"]
|
||||||
|
// Instead of adding acc to load-all: always add by default if native is acc
|
||||||
|
// selectedScopes = nativeScope == "accelerator" ? ["node", "accelerator"] : ["node"]
|
||||||
|
}
|
||||||
|
|
||||||
selectedResolution = Number(pendingResolution)
|
selectedResolution = Number(pendingResolution)
|
||||||
|
|
||||||
metricData = queryStore({
|
metricData = queryStore({
|
||||||
|
Loading…
Reference in New Issue
Block a user