Collects fields from multiple events into one event. It has a limit of 1Kb per key when used as part of a groupBy() operation. This limits the number of values you can index during the aggregation.

ParameterTypeRequiredDefault ValueDescription
fields[a]array of stringsrequired   Names of the fields to keep.
limitintegeroptional[b] 2000 Limit to number of distinct values in collect.
  Minimum1 
multivalbooleanoptional[b] true Collects the resulting value as multivalue (a single field value using separator).
separatorstringoptional[b] \n Separator used for multiple values.

[a] The parameter name fields can be omitted.

[b] Optional parameters use their default value unless explicitly set.

Hide omitted argument names for this function

Show omitted argument names for this function

Warning

Collecting the @timestamp field currently only works when a single timestamp exists. You can work around this restriction by renaming or making another field and collecting that instead, for example:

logscale
timestamp := @timestamp
| collect(timestamp)

If you do not need more than a single value, consider using the selectLast() function or setting limit=1, if you experience that the @timestamp field not having a value.

collect() Examples

Click + next to an example below to get the full details.

Collect and Group Events by Specified Field - Example 1

Collect and group events by specified field using collect() as part of a groupBy() operation

Collect and Group Events by Specified Field - Example 2

Collect and group events by specified field using collect() as part of a groupBy() operation

Sort Timestamps With groupBy()

Sorting fields based on aggregated field values