Humio Server 1.0.25 Archive (2017-11-06)
Version? | Type? | Release Date? | Availability? | End of Support | Security Updates | Upgrades From? | Config. Changes? |
---|---|---|---|---|---|---|---|
1.0.25 | Archive | 2017-11-06 | Cloud | 2020-11-30 | No | 1.1.0 | No |
Available for download two days after release.
Regular update release.
Fixed in this release
Summary
Anonymous Composite Function Calls can now make use of filter expressions:
#type=accesslog | groupby(function={ uri=/foo* | count() })
Support for C-style allow comments
// single line
or/* multi line */
New HTTP Ingest API supporting parsers.
Saved queries can be invoked as a macro (see User Functions) using the following syntax:
$"name of saved query"()
or$nameOfSavedQuery()
. Saved queries can declare arguments using?{arg=defaultValue}
syntax. Such arguments can be used where ever a string, number or identifier is allowed in the language. When calling a saved query, you can specify values for the arguments with a syntax like:$savedQuery(arg=value, otherArg=otherValue)
.