Module: check_mk
Branch: master
Commit: cd9404b73927e7fe8f61b1e6d105c9f208c1595a
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=cd9404b73927e7…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Wed Aug 24 08:09:09 2011 +0200
multisite: Add the newest sorter with priority to the user sorters list
---
web/htdocs/views.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/web/htdocs/views.py b/web/htdocs/views.py
index 0012495..f80bcf6 100644
--- a/web/htdocs/views.py
+++ b/web/htdocs/views.py
@@ -2232,7 +2232,7 @@ def sort_url(view_sorters, group_painters, painter):
# Now apply the sorter of the current column:
# - Negate when already in sorters
- # - Append to user sorters when not set yet
+ # - Add in the front of the user sorters when not set
sorter_name = get_sorter_name_of_painter(painter)
this_asc_sorter = (sorter_name, False)
this_desc_sorter = (sorter_name, True)
@@ -2245,7 +2245,7 @@ def sort_url(view_sorters, group_painters, painter):
sorter.remove(this_desc_sorter)
else:
# First click: add this sorter
- sorter = group_sort + user_sort + [this_asc_sorter] + view_sort
+ sorter = group_sort + [this_asc_sorter] + user_sort + view_sort
return ','.join([ ('-' if s[1] else '') + s[0] for s in sorter ])
Module: check_mk
Branch: master
Commit: ac1fe769db3a0f25d21acfbe1f4f180dcc345741
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=ac1fe769db3a0f…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Tue Aug 23 17:51:59 2011 +0200
Updated bug entries
---
.bugs/208 | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/.bugs/208 b/.bugs/208
index bbd257c..67296f9 100644
--- a/.bugs/208
+++ b/.bugs/208
@@ -1,10 +1,11 @@
Title: Describe trends in "Monitoring filesystems"
Component: doku
+State: done
+Class: cleanup
+Date: 2011-03-14 09:33:22
Benefit: 1
-State: open
Cost: 1
-Date: 2011-03-14 09:33:22
-Class: cleanup
+Fun: 0
The article about filesystems should contain all information about
trends. Also hints to the various filesystem checks.
@@ -14,3 +15,6 @@ show so nasty steps in the trend graphs...
==> I've found the reason: The cronjob deleted the counters file
every night at 00:00. I've removed that.
+
+2011-08-23 17:51:58: changed state open -> done
+Rewrote the article.
Module: check_mk
Branch: master
Commit: 3d715a78a3c1011ede84d08781ddba166567a331
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=3d715a78a3c101…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Tue Aug 23 17:05:28 2011 +0200
Updated bug entries
---
.bugs/193 | 16 +++++++++++++---
1 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/.bugs/193 b/.bugs/193
index 54b1b3a..77cf97f 100644
--- a/.bugs/193
+++ b/.bugs/193
@@ -1,10 +1,20 @@
Title: Duplicate Host kann via WATO nicht aufgelöst werden
Component: wato
+State: wontfix
+Class: nastiness
+Date: 2011-08-23 07:46:25
Benefit: 3
-State: open
Cost: 3
-Date: 2011-08-23 07:46:25
-Class: nastiness
+Fun: 0
Es ist nicht mehr möglich cmk --automation Kommandos abzusetzen, wenn man z.B.
einen Duplicate Host in der Config hat.
+
+2011-08-23 17:05:23: changed state open -> wontfix
+Wenn man den doppelten host mit WATO anlegt, kann man ihn mit
+WATO wieder entfernen und so weiterkommen. Wenn die Konfiguration
+nicht OK ist, ist es gefährlich, Check_MK etwas ändern zu lassen.
+Deswegen finde ich das Verhalten so richtig.
+
+Wichtig ist nur, dass man sich in einer reinen WATO-Umgebung nix
+kaputtmachen kann per WATO.
Module: check_mk
Branch: master
Commit: ac75e68a6c99a854ca7a651ad7cf15c1bb896dae
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=ac75e68a6c99a8…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Tue Aug 23 16:56:11 2011 +0200
Updated bug entries
---
.bugs/208 | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/.bugs/208 b/.bugs/208
index 21a3a46..bbd257c 100644
--- a/.bugs/208
+++ b/.bugs/208
@@ -11,5 +11,6 @@ trends. Also hints to the various filesystem checks.
Read also bug #208. And please check out, why the Demoserver
show so nasty steps in the trend graphs...
-~
+==> I've found the reason: The cronjob deleted the counters file
+every night at 00:00. I've removed that.