No commit activity in last 3 years
No release in over 3 years
A Logstash filter plugin for decoding (X)HTML entities from event fields. This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gem_name. This gem is not a stand-alone program.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

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.