This is a plugin for Logstash.
This plugin sends events to a Jut data engine. Events are formatted to be suitable for direct import via http and are grouped into batches to reduce the total number of http transactions required to import many records.
-
To get started, you'll need JRuby with the Bundler gem installed.
-
Install dependencies
bundle install- Update your dependencies
bundle install- Run tests
bundle exec rspec- Edit Logstash
Gemfileand add the local plugin path, for example:
gem "logstash-output-jut", :path => "/your/local/logstash-output-jut"- Install plugin
bin/plugin install --no-verify- Run Logstash with your plugin
bin/logstash -e 'input { stdin {} } output { jut { url => URL }}'At this point any modifications to the plugin code will be applied to this local Logstash setup. After modifying the plugin, simply rerun Logstash.
-
Copy the files jut.rb and HTTPBatcher.rb into /path/to/logstash-1.4.2/lib/logstash/outputs/
-
Run Logstash with your plugin
bin/logstash -e 'input { stdin {} } output { jut { url => URL }}'You can use the same 2.1 method to run your plugin in an installed Logstash by editing its Gemfile and pointing the :path to your local plugin development directory or you can build the gem and install it using:
- Build your plugin gem
gem build logstash-output-jut.gemspec- Install the plugin from the Logstash home
bin/plugin install /your/local/plugin/logstash-output-jut.gem- Start Logstash and proceed to test the plugin