No commit activity in last 3 years
No release in over 3 years
This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. 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 Codec Thrift

Gem Version Build Status

Install

$ ./bin/plugin install logstash-codec-thrift

Usage

input {
  zeromq {
    codec => thrift {
      classname => "example_thrift_class"
      file => "/path/to/your/thrift/gen/ruby/example_thrift_class_types.rb"
      protocol_factory => "JsonProtocolFactory" # optional, defalut: BinaryProtocolFactory
    }
  }
}

Install dependencies

Install jruby:

$ brew install jruby

Install jruby bundler:

$ jruby -S gem install bundler

Install plugin dependencies:

$ jruby -S bundler install

Build & Install

Build Gem:

$ gem build logstash-codec-thrift.gemspec

Install Gem:

$ ./bin/plugin install /your/local/plugin/logstash-codec-thrift.gem