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 | 2019-11-19 | 1.1.0 | No | No |
Regular update release.
Bug Fixes
Summary
Performance has improved for most usages of regex (we have moved to use
RE2/J
rather than Java'sjava.util.regex
.)Improve syntax highlighting in search field
When no field is named, i.e. as in
/err/i
, then@rawstring
is being searched.A bug has been fixed where searching for unicode characters could cause false positives.
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 theregex()
function.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 theregex()
function. I.e. to case-insensitively find all log lines containingerr
(orERR
, orErr
) you can now search/err/i