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

Logstash Burrow input plugin

Travis Build Status

This plugin is based off logstash-input-http_poller by @logstash-plugins.

This Logstash input plugin allows you to call Burrow HTTP API and send its output as events.

The license is Apache 2.0.

Config Example

input {
  burrow {
    client => {
        url => "http://localhost:8000"
    }
    # Supports "cron", "every", "at" and "in" schedules by rufus scheduler
    # this should relate to Burrow offset-refresh
    schedule => { every => "60s"}
  }
}

output {
  stdout {
    codec => rubydebug
  }
}

Build Plugin

bundle install

Test Plugin

bundle exec rspec

Install Plugin from rubygems.org

logstash-plugin install logstash-input-burrow

Install Plugin

gem build logstash-input-burrow.gemspec

logstash-plugin install logstash-input-burrow-1.0.0.gem