├── .gitignore ├── .travis.yml ├── COPYING ├── Gemfile ├── README.md ├── Rakefile ├── fluent-plugin-nats.gemspec ├── lib └── fluent │ └── plugin │ ├── in_nats.rb │ └── out_nats.rb └── test ├── nats-publish-message.rb ├── plugin ├── test_in_nats.rb └── test_out_nats.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/fluent-plugin-nats/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/fluent-plugin-nats/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/fluent-plugin-nats/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/fluent-plugin-nats/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/fluent-plugin-nats/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/fluent-plugin-nats/HEAD/Rakefile -------------------------------------------------------------------------------- /fluent-plugin-nats.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/fluent-plugin-nats/HEAD/fluent-plugin-nats.gemspec -------------------------------------------------------------------------------- /lib/fluent/plugin/in_nats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/fluent-plugin-nats/HEAD/lib/fluent/plugin/in_nats.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/out_nats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/fluent-plugin-nats/HEAD/lib/fluent/plugin/out_nats.rb -------------------------------------------------------------------------------- /test/nats-publish-message.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/fluent-plugin-nats/HEAD/test/nats-publish-message.rb -------------------------------------------------------------------------------- /test/plugin/test_in_nats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/fluent-plugin-nats/HEAD/test/plugin/test_in_nats.rb -------------------------------------------------------------------------------- /test/plugin/test_out_nats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/fluent-plugin-nats/HEAD/test/plugin/test_out_nats.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/fluent-plugin-nats/HEAD/test/test_helper.rb --------------------------------------------------------------------------------