This commit is contained in:
2020-05-26 20:38:53 +00:00
parent 5665bb859d
commit f5a7c5a1ce

View File

@@ -85,10 +85,22 @@ export default {
labels: this.obj.metricMM.labels,
datasets: [
{
label: "Memory allocated",
label: "Allocated",
borderColor: "green",
fill: false,
data: this.obj.metricMM.allocated
},
{
label: "Working set",
borderColor: "blue",
fill: false,
data: this.obj.metricMM.workingSet
},
{
label: "Private bytes",
borderColor: "red",
fill: false,
data: this.obj.metricMM.privateBytes
}
]
};