├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib └── logstash │ ├── outputs │ └── clickhouse.rb │ └── util │ └── shortname_resolver.rb └── logstash-output-clickhouse.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | Gemfile.lock 3 | .bundle 4 | vendor 5 | .idea 6 | *~ -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcmike/logstash-output-clickhouse/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcmike/logstash-output-clickhouse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcmike/logstash-output-clickhouse/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcmike/logstash-output-clickhouse/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/logstash/outputs/clickhouse.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcmike/logstash-output-clickhouse/HEAD/lib/logstash/outputs/clickhouse.rb -------------------------------------------------------------------------------- /lib/logstash/util/shortname_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcmike/logstash-output-clickhouse/HEAD/lib/logstash/util/shortname_resolver.rb -------------------------------------------------------------------------------- /logstash-output-clickhouse.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/funcmike/logstash-output-clickhouse/HEAD/logstash-output-clickhouse.gemspec --------------------------------------------------------------------------------