From 96724303b7aa499ee31ea5aacab4ee26c4c794d1 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 17 Jun 2017 15:23:25 +0200 Subject: [PATCH] Correct the scale of the memory metrics. --- mixer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mixer.cpp b/mixer.cpp index d55fa61..860df6c 100644 --- a/mixer.cpp +++ b/mixer.cpp @@ -979,7 +979,7 @@ void Mixer::thread_func() printf("\n"); - metrics_memory_used_bytes = used.ru_maxrss; + metrics_memory_used_bytes = used.ru_maxrss * 1024; } -- 2.39.2