Getting Started with the Mezmo Platform
Manage Source Data
Build Telemetry Pipelines
Monitor Data and Create Alerts
Pipeline Destinations
Pipeline Processors
Reference
Other Mezmo Resources
Title
Message
Create new category
What is the title of your new category?
Edit page index title
What is the title of the page index?
Edit category
What is the new title of your category?
Edit link
What is the new title and URL of your link?
Dedupe Processor
Copy Markdown
Open in ChatGPT
Open in Claude
Connect to Cursor
Connect to VS Code
Description
The Dedupe processor removes duplicate values from log data.
Use
This processor is most useful for reducing “chatter” in logs. The overlap of data across fields is the key to having this processor work effectively. This processor will emit the first matching record of the set of records that are being compared.
Configuration
There are three options to configure for this processor.
| Option | Description | Example |
|---|---|---|
| Number of Events | The number of events to compare across. Limited to 5000. | 5000 |
| Comparison Type | Match will remove duplicate records based on the specified fields. Ignore will remove duplicate records based on all fields except those specified. | Match |
| Fields | The field or fields to apply the Dedupe processing to. | .foo |
Example - Match
Before
JSON
{"foo": "bar", "baz": 1}{"foo": "bar", "baz": 2, 'bat': true}{"foo": "qux", "baz": 3}{"foo": "qux", "baz": 4}{"foo": "qux", "baz": 5}Dedupe Options
| Option | Value |
|---|---|
| Number of Events | 5 |
| Comparison Type | Match |
| Fields | .foo |
After
JSON
{"foo": "bar", "baz": 1}{"foo": "qux", "baz": 3}Example - Ignore
Before
JSON
JSON{"foo": "bar", "baz": 1}{"foo": "bar", "baz": 2, "bat": true}{"foo": "qux", "baz": 3}{"foo": "qux", "baz": 4}{"foo": "corge", "baz": 5}Dedupe Options
| Option | Value |
|---|---|
| Number of Events | 5 |
| Comparison Type | Ignore |
| Fields | .baz |
After
JSON
{"foo": "bar", "baz": 1}{"foo": "bar", "baz": 2, "bat": true}{"foo": "qux", "baz": 3}{"foo": "corge", "baz": 5}Type to search, ESC to discard
Type to search, ESC to discard
Type to search, ESC to discard
Last updated on Nov 1, 2024
Was this page helpful?
Next to read:
Encrypt Field ProcessorDiscard Changes
Do you want to discard your current changes and overwrite with the template?
Archive Synced Block
Message
Create new Template
What is this template's title?
Delete Template
Message