Remove Fields Processor
Description
The Remove Fields processor drops JSON fields from each record in the data stream.
Use
This processor is useful when there are specific fields that you want to remove from your data before sending it to storage or to additional processors.
Configuration
There is one option to configure for this processor.
Option | Description | Example |
---|---|---|
Fields | The field or fields to drop from each record in the data stream. | .baz |
Example
Before
{
"foo": "bar",
"baz": 1
}
Remove Fields Options
Option | Value |
---|---|
Fields | .baz |
After
{
"foo": "bar"
}
Was this page helpful?