├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.fluentd.lt.0.10.43 ├── README.md ├── Rakefile ├── fluent-plugin-anormalydetect.gemspec ├── lib └── fluent │ └── plugin │ ├── change_finder.rb │ └── out_anomalydetect.rb └── test ├── helper.rb ├── plugin └── test_out_anomalydetect.rb └── stock.2432.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muddydixon/fluent-plugin-anomalydetect/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muddydixon/fluent-plugin-anomalydetect/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muddydixon/fluent-plugin-anomalydetect/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.fluentd.lt.0.10.43: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muddydixon/fluent-plugin-anomalydetect/HEAD/Gemfile.fluentd.lt.0.10.43 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muddydixon/fluent-plugin-anomalydetect/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muddydixon/fluent-plugin-anomalydetect/HEAD/Rakefile -------------------------------------------------------------------------------- /fluent-plugin-anormalydetect.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muddydixon/fluent-plugin-anomalydetect/HEAD/fluent-plugin-anormalydetect.gemspec -------------------------------------------------------------------------------- /lib/fluent/plugin/change_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muddydixon/fluent-plugin-anomalydetect/HEAD/lib/fluent/plugin/change_finder.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/out_anomalydetect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muddydixon/fluent-plugin-anomalydetect/HEAD/lib/fluent/plugin/out_anomalydetect.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muddydixon/fluent-plugin-anomalydetect/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/plugin/test_out_anomalydetect.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muddydixon/fluent-plugin-anomalydetect/HEAD/test/plugin/test_out_anomalydetect.rb -------------------------------------------------------------------------------- /test/stock.2432.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muddydixon/fluent-plugin-anomalydetect/HEAD/test/stock.2432.csv --------------------------------------------------------------------------------