├── .gitignore ├── .ruby-version ├── .travis.yml ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── fluent-plugin-mesosphere-filter.gemspec ├── lib └── fluent │ └── plugin │ └── filter_mesosphere_filter.rb └── test ├── containers ├── chronos.json ├── chronos_bad.json ├── marathon.json └── marathon2.json ├── helper.rb └── plugin └── test_mesosphere.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.4.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/Rakefile -------------------------------------------------------------------------------- /fluent-plugin-mesosphere-filter.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/fluent-plugin-mesosphere-filter.gemspec -------------------------------------------------------------------------------- /lib/fluent/plugin/filter_mesosphere_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/lib/fluent/plugin/filter_mesosphere_filter.rb -------------------------------------------------------------------------------- /test/containers/chronos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/test/containers/chronos.json -------------------------------------------------------------------------------- /test/containers/chronos_bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/test/containers/chronos_bad.json -------------------------------------------------------------------------------- /test/containers/marathon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/test/containers/marathon.json -------------------------------------------------------------------------------- /test/containers/marathon2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/test/containers/marathon2.json -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/plugin/test_mesosphere.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshughes/fluent-plugin-mesosphere-filter/HEAD/test/plugin/test_mesosphere.rb --------------------------------------------------------------------------------