Module: check_mk
Branch: master
Commit: e7dd9aec1e85d8d653f7786a5199e8dea3a43a2b
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=e7dd9aec1e85d8…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Mon Apr 6 18:40:28 2015 +0200
mem.linux: fix missing stack bug in new graph
---
web/plugins/metrics/check_mk.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/web/plugins/metrics/check_mk.py b/web/plugins/metrics/check_mk.py
index ee7726d..47e440d 100644
--- a/web/plugins/metrics/check_mk.py
+++ b/web/plugins/metrics/check_mk.py
@@ -1822,10 +1822,10 @@ graph_info.append({
graph_info.append({
"title" : _("Active and Inactive Memory"),
"metrics" : [
- ("mem_lnx_active_anon", "area"),
- ("mem_lnx_active_file", "stack"),
- ("mem_lnx_inactive_anon", "area"),
+ ("mem_lnx_inactive_anon", "stack"),
("mem_lnx_inactive_file", "stack"),
+ ("mem_lnx_active_anon", "stack"),
+ ("mem_lnx_active_file", "stack"),
],
})