├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── fluent-plugin-splunk-http-eventcollector.gemspec ├── lib └── fluent │ └── plugin │ └── out_splunk-http-eventcollector.rb └── test ├── helper.rb └── plugin └── test_out_splunk-http-eventcollector.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycied00d/fluent-plugin-splunk-http-eventcollector/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 2.2 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycied00d/fluent-plugin-splunk-http-eventcollector/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycied00d/fluent-plugin-splunk-http-eventcollector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycied00d/fluent-plugin-splunk-http-eventcollector/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycied00d/fluent-plugin-splunk-http-eventcollector/HEAD/Rakefile -------------------------------------------------------------------------------- /fluent-plugin-splunk-http-eventcollector.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycied00d/fluent-plugin-splunk-http-eventcollector/HEAD/fluent-plugin-splunk-http-eventcollector.gemspec -------------------------------------------------------------------------------- /lib/fluent/plugin/out_splunk-http-eventcollector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycied00d/fluent-plugin-splunk-http-eventcollector/HEAD/lib/fluent/plugin/out_splunk-http-eventcollector.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycied00d/fluent-plugin-splunk-http-eventcollector/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/plugin/test_out_splunk-http-eventcollector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brycied00d/fluent-plugin-splunk-http-eventcollector/HEAD/test/plugin/test_out_splunk-http-eventcollector.rb --------------------------------------------------------------------------------