Module: check_mk
Branch: master
Commit: 0bac1a3243a5b8160754f16cd4a9c51a960df5f0
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=0bac1a3243a5b8…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Fri Mar 27 08:59:59 2015 +0100
Smaller graph updates
---
web/plugins/metrics/check_mk.py | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/web/plugins/metrics/check_mk.py b/web/plugins/metrics/check_mk.py
index 75a513d..df9897a 100644
--- a/web/plugins/metrics/check_mk.py
+++ b/web/plugins/metrics/check_mk.py
@@ -520,7 +520,7 @@ metric_info["temp"] = {
metric_info["threads"] = {
"title" : _("Number of threads"),
"unit" : "count",
- "color" : "#aa44ff",
+ "color" : "#9a77ee",
}
metric_info["user"] = {
@@ -1775,18 +1775,18 @@ graph_info.append({
graph_info.append({
"title" : _("RAM + Swap overview"),
"metrics" : [
- ("mem_total", "area"),
+ ("mem_total", "area"),
("swap_total", "stack"),
- ("mem_used", "area"),
- ("swap_used", "stack"),
+ ("mem_used", "area"),
+ ("swap_used", "stack"),
],
})
graph_info.append({
"title" : _("Swap"),
"metrics" : [
- ("swap_total", "area"),
- ("swap_used", "area"),
+ ("swap_total", "area"),
+ ("swap_used", "area"),
("swap_cached", "stack"),
],
})
@@ -1794,10 +1794,10 @@ graph_info.append({
graph_info.append({
"title" : _("Caches"),
"metrics" : [
- ("mem_lnx_cached", "area"),
+ ("mem_lnx_slab", "stack"),
+ ("swap_cached", "stack"),
("mem_lnx_buffers", "stack"),
- ("swap_cached", "stack"),
- ("mem_lnx_slab", "stack"),
+ ("mem_lnx_cached", "stack"),
],
})