synlay / logstash-filter-htmlentities

Logstash filter for decoding (X)HTML entities from event fields

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Logstash Filter HTMLEntities Plugin

Build Status Coverage Status Gem Version GitHub license

This is a plugin for Logstash.

It is fully free and fully open source. The license is MIT, see LICENSE for further infos.

Documentation

This filter will decode (X)HTML entities from a given source field and store the result to the target field.

1. Configuration

filter {
  htmlentities {
    source => "test_source_field"
    target => "test_target_field"
  }
}

This configuration will encode the source field test_source_field e.q. with data "Examples & Explanations" to "Examples & Explanations" and store the result to the field test_target_field.

Developing

For further instructions on howto develop on logstash plugins, please see the documentation of the official logstash-filter-example.

About

Logstash filter for decoding (X)HTML entities from event fields

License:MIT License


Languages

Language:Ruby 100.0%