Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mezmo-9a59581a-mintlify-926f893d.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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.
OptionDescriptionExample
FieldsThe field or fields to drop from each record in the data stream..baz

Example

Before

{
  "foo": "bar",
  "baz": 1
}

Remove Fields Options

OptionValue
Fields.baz

After

{
  "foo": "bar"
}