Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In order to check e.g. DB2 log files, we required check_logfiles to check for patterns in log-messages which span multiple lines.
The changes in this pull request introduce two options to check_logfiles searches:
multiline: if this is on, scanning of a log file will change so that multiple lines are read before the rest of the scan logic is executed. Lines read are identified by a pattern which must be given in the multilinestartpattern options, described below.
multilinestartpattern: this is a pattern, identifying how a log line starts in multi-line logs. In a DB2 diag-log file this would always be a date/time combination. The scan method then takes the first line which matches this pattern and concatenates each following line as long as it does NOT match this pattern.