Refactoring: Changed remaining check parameters starting with an 's' to the new rules...
[check_mk.git] / .werks / 1122
blob6bb4c7d4b653b8354005a9bcf00be344628e82f1
1 Title: windows agent: unicode logfile monitoring: now able to detect incomplete written lines
2 Level: 1
3 Component: checks
4 Compatible: compat
5 Version: 1.2.5i6
6 Date: 1412178359
7 Class: fix
9 There were instances where a logline was not fully written to a UTF-16 (unicode) encoded file.
10 For example:
12 F+:C:\some\log\file.log
13 This is the first line
14 This is the sec
15 F-:
17 In this scenario the agent is not allowed to parse the second line, because
18 it has not been fully written to disk yet. A complete line is considered to
19 be finished with a carriage return followed by a newline.
21 With this update the agent now stops parsing after the first line and
22 continues at the start of the second line on the following agent query.
23 Note: This only applies to UTF-16 encoded files.