https://github.com/fabianfrz/logstash-filter-hex
Filter for Logstash to convert between data and hex encoded data. Provided by milCERT
https://github.com/fabianfrz/logstash-filter-hex
filter hex logstash logstash-plugin
Last synced: about 1 year ago
JSON representation
Filter for Logstash to convert between data and hex encoded data. Provided by milCERT
- Host: GitHub
- URL: https://github.com/fabianfrz/logstash-filter-hex
- Owner: fabianfrz
- License: other
- Created: 2016-11-03T14:48:49.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-04T15:00:30.000Z (over 9 years ago)
- Last Synced: 2025-04-17T20:26:17.865Z (about 1 year ago)
- Topics: filter, hex, logstash, logstash-plugin
- Language: Ruby
- Size: 2.93 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Logstash Hex Filter
This filter helps you to hex encode/decode your fields.
## Decode fields
```
hex {
fields => ["key_1", "key_2"]
}
```
## Encode field
```
hex {
fields => ["key_1", "key_2"]
action => "encode"
}
```
## Filter options
* **action**
If the content should be encoded (`encode`) or decoded (`decode`) The default value is `decode`.
* **fields**
The fields to encode or decode. Defaults to `message`.
* **type**
If you want to encode or decode the field as a `string` or an `integer`.
## Note
This filter has been written by Fabian Franz and has been provided to you by austrian milCERT.