Skip to content

Commit

Permalink
fix: log max-height + avg mem
Browse files Browse the repository at this point in the history
  • Loading branch information
goranbs committed Jun 11, 2024
1 parent 0503fc4 commit 5df31f1
Showing 1 changed file with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,9 @@
maxCpuList.push(findMax(currentCpuData[step].y));
avgCpulist.push(computeAverage(currentCpuData[step].y));
}
maxCpu = findMax(maxCpuList).toFixed(2).toString();
averageCpu = computeAverage(avgCpulist).toFixed(2).toString();
});
maxCpu = findMax(maxCpuList).toFixed(2).toString();
averageCpu = computeAverage(avgCpulist).toFixed(2).toString();
} else {
data.push(currentCpuData[selectedStep]);
maxCpu = findMax(currentCpuData[selectedStep].y).toFixed(2).toString();
Expand All @@ -351,12 +351,13 @@
maxMemoryList.push(findMax(memoryData[step].y));
avgMemoryList.push(computeAverage(memoryData[step].y));
}
maxMemory = filesize(findMax(maxMemoryList), { round: 2 });
averageMemory = filesize(computeAverage(avgMemoryList), { round: 2 });
});
maxMemory = filesize(findMax(maxMemoryList), { round: 2 });
averageMemory = filesize(computeAverage(avgMemoryList), { round: 2 });
} else {
data.push(memoryData[selectedStep]);
maxMemory = filesize(findMax(memoryData[selectedStep].y), { round: 2 });
averageMemory = filesize(computeAverage(memoryData[selectedStep].y), { round: 2 });
}
break;
}
Expand Down Expand Up @@ -525,7 +526,7 @@
<div class="grid grid-rows-4 grid-cols-2 gap-5 auto-rows-min">
<!-- if the logs are empty, remove logs sections -->
{#if Object.values(logs).join('') !== ''}
<div class="card logcard row-span-4 p-5">
<div class="card mainlogcard row-span-4 p-5">
<!-- display if the dryrun has a non-empty phase message from argo (usually null if no error) -->
{#if dryRunPhaseMessage}
<div class="card logcard row-span-1 p-5">
Expand Down Expand Up @@ -630,13 +631,19 @@
.card.plotcard {
display: grid;
place-items: start;
max-height: 50vh;
}
.card.resourcecard {
overflow-y: scroll;
overflow-x: scroll;
min-height: 25rem;
max-height: fit-content;
}
.card.mainlogcard {
overflow-y: scroll;
overflow-x: scroll;
max-height: 200vh;
}
.card.logcard {
overflow-y: scroll;
max-height: fit-content;
Expand Down

0 comments on commit 5df31f1

Please sign in to comment.