Sha256: 1474b4b1296a0c14abda5a13ee7f08e844644466f437812fbb53104c5e91a123

Contents?: true

Size: 1.07 KB

Versions: 2

Compression:

Stored size: 1.07 KB

Contents

# Logstash Filter HTMLEntities Plugin

[![Travis Build Status](https://travis-ci.org/synlay/logstash-filter-htmlentities.svg)](https://travis-ci.org/synlay/logstash-filter-htmlentities)

This is a plugin for [Logstash](https://github.com/elastic/logstash).

It is fully free and fully open source. The license is MIT, see [LICENSE](http://github.com/synlay/logstash-filter-htmlentities/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

```ruby
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](https://github.com/logstash-plugins/logstash-filter-example#developing).

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
logstash-filter-htmlentities-0.1.0 README.md
logstash-filter-htmlentities-0.1.0.pre.alpha README.md