From f5a7c5a1ce5c7bf1dd159660c30c5118c5705fd3 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 26 May 2020 20:38:53 +0000 Subject: [PATCH] --- ayanova/src/views/ops-metrics.vue | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/ayanova/src/views/ops-metrics.vue b/ayanova/src/views/ops-metrics.vue index bdf253bb..b6fe80b3 100644 --- a/ayanova/src/views/ops-metrics.vue +++ b/ayanova/src/views/ops-metrics.vue @@ -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 } ] };