├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── fluent-plugin-postgres.gemspec ├── lib └── fluent │ └── plugin │ └── out_postgres.rb └── test ├── helper.rb └── plugin └── test_out_postgres.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uken/fluent-plugin-postgres/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uken/fluent-plugin-postgres/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uken/fluent-plugin-postgres/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uken/fluent-plugin-postgres/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uken/fluent-plugin-postgres/HEAD/Rakefile -------------------------------------------------------------------------------- /fluent-plugin-postgres.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uken/fluent-plugin-postgres/HEAD/fluent-plugin-postgres.gemspec -------------------------------------------------------------------------------- /lib/fluent/plugin/out_postgres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uken/fluent-plugin-postgres/HEAD/lib/fluent/plugin/out_postgres.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uken/fluent-plugin-postgres/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/plugin/test_out_postgres.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uken/fluent-plugin-postgres/HEAD/test/plugin/test_out_postgres.rb --------------------------------------------------------------------------------