Module: check_mk
Branch: master
Commit: 5cb43109b3c0a1c90808d5b91108cd726227dfe9
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=5cb43109b3c0a1…
Author: Simon Betz <si(a)mathias-kettner.de>
Date: Wed Feb 28 09:50:27 2018 +0100
Adapted service details
Change-Id: I9b0fa78fed73dd234c65f0fe3694b927bddae41e
---
checks/memory.include | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/checks/memory.include b/checks/memory.include
index 42a5fa9..e206185 100644
--- a/checks/memory.include
+++ b/checks/memory.include
@@ -35,7 +35,7 @@ def check_memory_simple(used, total, params):
perc_used = (float(used) / total) * 100
- infotext = "%s used (%s of %s)" % (
+ infotext = "Usage: %s (Used: %s, Total: %s)" % (
get_percent_human_readable(perc_used),
get_bytes_human_readable(used),
get_bytes_human_readable(total))