Fix cpu history not being relative to the previous entry

This commit is contained in:
Sandra
2022-01-31 05:15:14 +01:00
parent 900b807b74
commit eb903752e6

View File

@@ -59,11 +59,18 @@ export default {
.map(row => row.reduce((a, b) => a + b, 0)) .map(row => row.reduce((a, b) => a + b, 0))
const series = metrics.map(metric => { const series = metrics.map(metric => {
const index = header.indexOf(metric); const headerIndex = header.indexOf(metric);
return { const name = metric.replace('cpu/', '');
name: metric.replace('cpu/', ''), const mData = data.map((entry, rowIndex) => {
data: data.map((entry, i) => [new Date(entry[timeIndex] * 1000), (entry[index] / cpuDataSums[i] * 100)]) let share = rowIndex > 0
} ? (entry[headerIndex] - data[rowIndex - 1][headerIndex]) / (cpuDataSums[rowIndex] - cpuDataSums[rowIndex - 1])
: entry[headerIndex] / cpuDataSums[rowIndex];
return [
new Date(entry[timeIndex] * 1000),
share * 100
];
});
return {name, data: mData}
}); });
return { return {