Humio Server 1.0.26 Archive (2017-11-09)
Version? | Type? | Release Date? | Availability? | End of Support | Security Updates | Upgrades From? | Config. Changes? |
---|---|---|---|---|---|---|---|
1.0.26 | Archive | 2017-11-09 | Cloud | 2020-11-30 | No | 1.1.0 | No |
Available for download two days after release.
Regular update release.
Fixed in this release
Summary
When no field is named, i.e. as in
/err/i
, then@rawstring
is being searched.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.Performance has improved for most usages of regex (we have moved to use
RE2/J
rather than Javajava.util.regex
.)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
A bug has been fixed where searching for unicode characters could cause false positives.
Improve syntax highlighting in search field