We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16725e6 commit 63cf6eeCopy full SHA for 63cf6ee
resources/scripts/components/server/console/StatGraphs.tsx
@@ -57,7 +57,7 @@ export default () => {
57
return;
58
}
59
60
- cpu.push(values.cpu_absolute);
+ cpu.push(values.cpu_absolute.toFixed(2));
61
memory.push(Math.floor(values.memory_bytes / 1024 / 1024));
62
network.push([
63
previous.current.tx < 0 ? 0 : Math.max(0, values.network.tx_bytes - previous.current.tx),
0 commit comments