No commit activity in last 3 years
No release in over 3 years
NSQ output plugin for Fluentd
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 10

Runtime

~> 0.10
~> 1.0
 Project Readme

NSQ plugin for Fluentd

Current maintainers: @cosmo0920

Input and Output plugins for nsq.

NSQ daemons are discovered through lookupd.

Installation

gem install fluent-plugin-nsq

Usage

Input

<source>
  type nsq
  topic webservers
  nsqlookupd 127.0.0.1:4161
  tag_source topic
</source>

Output

<match **>
  type nsq
  buffer_type file
  buffer_path /var/log/fluent/msgbus
  nsqlookupd 127.0.0.1:4161
  topic logs
</match>

dev

Don't forget to tag releases properly.

git tag v$(head -1 VERSION)
git push --tags