Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

logstash-filter-merge

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

logstash-filter-merge

  • 1.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Logstash Merge Filter Documentation

Travis Build Status Gem Version

This filter helps you to merge your fields.

Merge with root

merge {
    field => "something"
}

Only merge new fields to root

merge {
    field => "something"
    overwrite => false
}

Merge with custom target

merge {
    field => "something"
    target => "something_else"
}

Merge only whitelisted keys

merge {
	field => "something"
	whitelist => ["user_agent", "browser_family"]
}

Filter options

  • field

    The source field to read data from.

  • target

    The field to merge source field with. Defaults to event root.

  • overwrite

    Overwrite target fields with source field. Defaults to true.

  • whitelist

    If source is a hash, only merge keys listed in this array. Disabled by default.

Changelog

You can read about all changes in CHANGELOG.md.

Need help?

Need help? Try #logstash on freenode IRC or the Logstash discussion forum.

Want to contribute?

Get started by reading BUILD.md.

FAQs

Package last updated on 08 Sep 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc