Humio Server 1.0.26 Archive (2017-11-09)
Version | Type | Release Date | End of Support | Upgrades From | Data Migration | Config. Changes |
---|---|---|---|---|---|---|
1.0.26 | Archive | 2017-11-09 | 2018-11-09 | 1.1.0 | No | No |
Regular update release.
Bug Fixes
Summary
When such a regex-match expression appears at top-level e.g.
|
between two bars|
, then named capturing groups also cause new fields to be added to the output event as for the regex() function.Improve syntax highlighting in search field
Performance has improved for most usages of regex (we have moved to use
RE2/J
rather than Java'sjava.util.regex
.)A bug has been fixed where searching for unicode characters could cause false positives.
New syntax
field = /regex/idmg
syntax for matching. Optional flagsi
=ignore case,m
=multiline (change semantics of$
and^
to match each line, nut just start/end),d
=dotall (.
includes\n
), andg
=same asrepeat=true
for the regex() function. I.e. to case-insensitively find all log lines containingerr
(orERR
, orErr
) you can now search/err/i
When no field is named, i.e. as in
/err/i
, then@rawstring
is being searched.