aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2020-05-08 23:51:59 +0300
committerrinpatch <rinpatch@sdf.org>2020-05-08 23:57:47 +0300
commit30eaef9d615428b23dbc569b6e6c745185bb00b8 (patch)
treea019b365a0d69be5433d7f3b4662b26306320636
parentdf82ee417916b4c1572c4c3403566cf19ff68ee4 (diff)
downloadpleroma-30eaef9d615428b23dbc569b6e6c745185bb00b8.tar.gz
healthcheck: report real amount of memory allocated by beam
as opposed to memory currently in use
-rw-r--r--CHANGELOG.md3
-rw-r--r--lib/pleroma/healthcheck.ex2
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 270c1b869..d469793f0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -42,6 +42,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased (patch)]
+### Fixed
+- Healthcheck reporting the number of memory currently used, rather than allocated in total
+
## [2.0.3] - 2020-05-02
### Security
diff --git a/lib/pleroma/healthcheck.ex b/lib/pleroma/healthcheck.ex
index 8f7f43ec2..92ce83cb7 100644
--- a/lib/pleroma/healthcheck.ex
+++ b/lib/pleroma/healthcheck.ex
@@ -29,7 +29,7 @@ defmodule Pleroma.Healthcheck do
@spec system_info() :: t()
def system_info do
%Healthcheck{
- memory_used: Float.round(:erlang.memory(:total) / 1024 / 1024, 2)
+ memory_used: Float.round(:recon_alloc.memory(:allocated) / 1024 / 1024, 2)
}
|> assign_db_info()
|> assign_job_queue_stats()