Module: check_mk
Branch: master
Commit: 9c0b18eae72619a2abcdd5680963be847d556c88
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=9c0b18eae72619…
Author: Andreas Boesl <ab(a)mathias-kettner.de>
Date: Thu Mar 2 10:56:39 2017 +0100
4452 Multisite Quicksearch: Now able to configure quicksearch filters in the global settings
You can now specifiy which quicksearch filters should be automatically traversed
whenever a text is entered in the quicksearch field. The default behaviour is
<ul>
<li>h: Hostname</li>
<li>al: Hostalias</li>
<li>ad: Hostaddress</li>
<li>s: Service description</li>
</ul
Results for each filter are now shown in separate topics, when there are matches
for multiple filters. You can also enable filters which are currently not used
in the default search
<ul>
<li>tg: Hosttag</li>
<li>hg: Hostgroup</li>
<li>sg: Servicegroup</li>
</ul
Additionally, you can modify the matching behaviour for a specific filter.
When a match is found you can continue the search, abort the search and show all results
or abort the search and show only the results for the current filter.
Change-Id: I7bb8594bba173ae96eabc20e8cb1998439f74183
---
.werks/4452 | 30 +++
web/htdocs/sidebar.py | 322 ++++++++++++++++++-----------
web/plugins/config/builtin.py | 3 +
web/plugins/sidebar/search.py | 33 +++
web/plugins/wato/check_mk_configuration.py | 33 +++
5 files changed, 305 insertions(+), 116 deletions(-)
Diff: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commitdiff;h=9c0b18eae7…
Module: check_mk
Branch: master
Commit: 4371438bc33c26c68c6b134c1b8b337f18cde883
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=4371438bc33c26…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Thu Mar 2 09:36:44 2017 +0100
4422 logwatch.ec: Message forwarding via TCP can now use a spool
When forwaring messages to a remote host via TCP it can happen that
messages are dropped. This may happen e.g. when the destination host
or service is not available. By default the messages to be forwarded
are dropped.
Now you can configure the TCP forwarding to spool the messages until
a deadline or the spool has reached a specific size to prevent
loss of messages.
Change-Id: I22bd16c3f11ee4ab872c634ea7f5b078f8327e20
---
.werks/4422 | 18 ++
checks/logwatch | 322 +++++++++++++++++++++++++++++------
web/plugins/wato/check_parameters.py | 165 +++++++++++-------
3 files changed, 392 insertions(+), 113 deletions(-)
Diff: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commitdiff;h=4371438bc3…
Module: check_mk
Branch: master
Commit: 93f416d03fdca9f4eb53af7d5d2fcbd1a4110c12
URL: http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=93f416d03fdca9…
Author: Marcel Schulte <ms(a)mathias-kettner.de>
Date: Wed Mar 1 16:25:46 2017 +0100
8663 FIX MSSQL plugin: fixed reading in of ini file(s)
Fixed a nasty bug in MSSQL plugin, which prevented the plugin to read in the ini files.
Change-Id: I576355d1a480cd81d01420e75450d9651ce7f2b5
---
.werks/8663 | 11 +++++++++++
agents/windows/plugins/mssql.vbs | 2 +-
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/.werks/8663 b/.werks/8663
new file mode 100644
index 0000000..ce5fc32
--- /dev/null
+++ b/.werks/8663
@@ -0,0 +1,11 @@
+Title: MSSQL plugin: fixed reading in of ini file(s)
+Level: 2
+Component: checks
+Class: fix
+Compatible: compat
+Edition: cre
+State: unknown
+Version: 1.5.0i1
+Date: 1488381734
+
+Fixed a nasty bug in MSSQL plugin, which prevented the plugin to read in the ini files.
diff --git a/agents/windows/plugins/mssql.vbs b/agents/windows/plugins/mssql.vbs
index 7e1416f..47207ec 100644
--- a/agents/windows/plugins/mssql.vbs
+++ b/agents/windows/plugins/mssql.vbs
@@ -67,9 +67,9 @@ Function readIniFile(path)
End If
End If
End If
- Set FH = Nothing
Loop
FH.Close
+ Set FH = Nothing
End If
Set readIniFile = parsed
Set parsed = Nothing