Tabular Operators
project-away operator
Select what fields from the input to exclude from the output.
Syntax
| project-away FieldName1, FieldName2, ...
The order of the fields in the result is determined by their original order in the dataset. Only the fields that were specified as arguments
are dropped. The other fields are included in the result. See also project
Arguments
name | type | description |
---|---|---|
Field Name | string | The name of the field or to be removed from the output. |
Returns
A table with fields that were not named as arguments. Contains same number of rows as the input table.
Examples
['http-logs']| project-away ['geo.city'], ['geo.country'], method