No commit activity in last 3 years
No release in over 3 years
Logstash plugin to encode and decode hex.
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 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.