Humio Server 1.0.25 Archive (2017-11-06)
Version | Type | Release Date | End of Support | Upgrades From | Data Migration | Config. Changes |
---|---|---|---|---|---|---|
1.0.25 | Archive | 2017-11-06 | 2019-11-19 | 1.1.0 | No | No |
Regular update release.
Bug Fixes
Summary
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)
.Support for C-style allow comments
// single line
or/* multi line */
Anonymous Composite Function Calls can now make use of filter expressions:
#type=accesslog | groupby(function={ uri=/foo* | count() })
New HTTP Ingest API supporting parsers.