├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.yaml ├── dependabot.yml └── workflows │ ├── add-to-project.yml │ ├── linux.yml │ └── stale-actions.yml ├── .gitignore ├── ChangeLog ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── ci └── prepare-kafka-server.sh ├── examples ├── README.md └── out_kafka2 │ ├── dynamic_topic_based_on_tag.conf │ ├── protobuf-formatter.conf │ └── record_key.conf ├── fluent-plugin-kafka.gemspec ├── lib └── fluent │ └── plugin │ ├── in_kafka.rb │ ├── in_kafka_group.rb │ ├── in_rdkafka_group.rb │ ├── kafka_plugin_util.rb │ ├── kafka_producer_ext.rb │ ├── out_kafka.rb │ ├── out_kafka2.rb │ ├── out_kafka_buffered.rb │ ├── out_rdkafka.rb │ ├── out_rdkafka2.rb │ └── rdkafka_patch │ ├── 0_11_0.rb │ ├── 0_12_0.rb │ ├── 0_14_0.rb │ └── 0_16_0.rb └── test ├── helper.rb └── plugin ├── test_in_kafka.rb ├── test_in_kafka_group.rb ├── test_kafka_plugin_util.rb ├── test_out_kafka.rb ├── test_out_kafka2.rb ├── test_out_kafka_buffered.rb └── test_out_rdkafka2.rb /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/add-to-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/.github/workflows/add-to-project.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/stale-actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/.github/workflows/stale-actions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /Gemfile.lock 2 | *.swp 3 | -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/ChangeLog -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/Rakefile -------------------------------------------------------------------------------- /ci/prepare-kafka-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/ci/prepare-kafka-server.sh -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/out_kafka2/dynamic_topic_based_on_tag.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/examples/out_kafka2/dynamic_topic_based_on_tag.conf -------------------------------------------------------------------------------- /examples/out_kafka2/protobuf-formatter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/examples/out_kafka2/protobuf-formatter.conf -------------------------------------------------------------------------------- /examples/out_kafka2/record_key.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/examples/out_kafka2/record_key.conf -------------------------------------------------------------------------------- /fluent-plugin-kafka.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/fluent-plugin-kafka.gemspec -------------------------------------------------------------------------------- /lib/fluent/plugin/in_kafka.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/in_kafka.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/in_kafka_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/in_kafka_group.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/in_rdkafka_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/in_rdkafka_group.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/kafka_plugin_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/kafka_plugin_util.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/kafka_producer_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/kafka_producer_ext.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/out_kafka.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/out_kafka.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/out_kafka2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/out_kafka2.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/out_kafka_buffered.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/out_kafka_buffered.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/out_rdkafka.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/out_rdkafka.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/out_rdkafka2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/out_rdkafka2.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/rdkafka_patch/0_11_0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/rdkafka_patch/0_11_0.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/rdkafka_patch/0_12_0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/rdkafka_patch/0_12_0.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/rdkafka_patch/0_14_0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/rdkafka_patch/0_14_0.rb -------------------------------------------------------------------------------- /lib/fluent/plugin/rdkafka_patch/0_16_0.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/lib/fluent/plugin/rdkafka_patch/0_16_0.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/plugin/test_in_kafka.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/test/plugin/test_in_kafka.rb -------------------------------------------------------------------------------- /test/plugin/test_in_kafka_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/test/plugin/test_in_kafka_group.rb -------------------------------------------------------------------------------- /test/plugin/test_kafka_plugin_util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/test/plugin/test_kafka_plugin_util.rb -------------------------------------------------------------------------------- /test/plugin/test_out_kafka.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/test/plugin/test_out_kafka.rb -------------------------------------------------------------------------------- /test/plugin/test_out_kafka2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/test/plugin/test_out_kafka2.rb -------------------------------------------------------------------------------- /test/plugin/test_out_kafka_buffered.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/test/plugin/test_out_kafka_buffered.rb -------------------------------------------------------------------------------- /test/plugin/test_out_rdkafka2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluent-plugin-kafka/HEAD/test/plugin/test_out_rdkafka2.rb --------------------------------------------------------------------------------