├── .gitignore ├── README.md ├── benchmark.sh ├── in_forward ├── Gemfile ├── README.md ├── agent.conf ├── docker-compose.yml ├── dummer.conf └── receiver.conf ├── kafka-connect ├── .gitignore ├── FluentdSourceConnector-TLS.properties ├── FluentdSourceConnector.properties ├── Gemfile ├── README.md ├── agent-tls.conf ├── agent.conf ├── dummer.conf ├── generate-config.rb ├── run-pidstat.sh ├── run-tls.sh ├── run.sh └── template │ └── agent.conf.erb ├── keep_forward ├── Gemfile ├── README.md ├── agent.conf ├── dummer.conf └── receiver.conf ├── one_forward ├── Gemfile ├── README.md ├── agent.conf ├── docker-compose.yml ├── dummer.conf └── receiver.conf ├── out_forward ├── Gemfile ├── README.md ├── agent.conf ├── docker-compose.yml ├── dummer.conf ├── flowcounter.conf └── receiver.conf ├── out_kafka ├── Gemfile ├── README.md ├── agent-tls.conf ├── agent.conf ├── agent2-tls.conf ├── agent2.conf ├── agent_buffered-tls.conf ├── agent_buffered.conf ├── dummer.conf └── run-pidstat.sh ├── peer_deliver ├── 22000_deliver.conf ├── 22001_deliver.conf ├── Gemfile ├── README.md ├── agent.conf ├── deliver.conf ├── docker-compose.yml ├── dummer.conf ├── flowcounter.conf ├── multi_thread_agent.conf └── receiver.conf ├── round_robin_deliver ├── Gemfile ├── README.md ├── agent.conf ├── deliver.conf ├── docker-compose.yml ├── dummer.conf ├── flowcounter.conf ├── multi_thread_agent.conf ├── multi_thread_deliver.conf └── receiver.conf └── template ├── .gitignore ├── README.md ├── Terraform └── fluentd.tf ├── Vagrantfile ├── ansible ├── ansible.cfg ├── host_vars │ ├── metrics.yaml │ └── server.yaml ├── playbook.yaml └── roles │ ├── agent │ ├── files │ │ └── send-metrics.rb │ └── tasks │ │ └── main.yaml │ ├── client │ ├── files │ │ └── run-benchmark.sh │ └── tasks │ │ └── main.yaml │ ├── fluentd │ ├── defaults │ │ └── main.yaml │ ├── tasks │ │ └── main.yaml │ └── templates │ │ ├── td-agent.conf.kafka.j2 │ │ ├── td-agent.conf.kafka2.j2 │ │ ├── td-agent.conf.kafka_buffered.j2 │ │ └── td-agent.conf.metrics.j2 │ ├── kafka │ ├── defaults │ │ └── main.yaml │ ├── files │ │ ├── run.sh │ │ └── server.properties │ ├── tasks │ │ └── main.yaml │ └── templates │ │ └── FluentdSourceConnector.properties.j2 │ └── metrics │ ├── defaults │ └── main.yaml │ ├── files │ └── docker-compose.yaml │ └── tasks │ └── main.yaml ├── generate-hosts.rb └── run-benchmark-scenario.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/benchmark.sh -------------------------------------------------------------------------------- /in_forward/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/in_forward/Gemfile -------------------------------------------------------------------------------- /in_forward/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/in_forward/README.md -------------------------------------------------------------------------------- /in_forward/agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/in_forward/agent.conf -------------------------------------------------------------------------------- /in_forward/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/in_forward/docker-compose.yml -------------------------------------------------------------------------------- /in_forward/dummer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/in_forward/dummer.conf -------------------------------------------------------------------------------- /in_forward/receiver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/in_forward/receiver.conf -------------------------------------------------------------------------------- /kafka-connect/.gitignore: -------------------------------------------------------------------------------- 1 | agent*.conf 2 | -------------------------------------------------------------------------------- /kafka-connect/FluentdSourceConnector-TLS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/kafka-connect/FluentdSourceConnector-TLS.properties -------------------------------------------------------------------------------- /kafka-connect/FluentdSourceConnector.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/kafka-connect/FluentdSourceConnector.properties -------------------------------------------------------------------------------- /kafka-connect/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/kafka-connect/Gemfile -------------------------------------------------------------------------------- /kafka-connect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/kafka-connect/README.md -------------------------------------------------------------------------------- /kafka-connect/agent-tls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/kafka-connect/agent-tls.conf -------------------------------------------------------------------------------- /kafka-connect/agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/kafka-connect/agent.conf -------------------------------------------------------------------------------- /kafka-connect/dummer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/kafka-connect/dummer.conf -------------------------------------------------------------------------------- /kafka-connect/generate-config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/kafka-connect/generate-config.rb -------------------------------------------------------------------------------- /kafka-connect/run-pidstat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/kafka-connect/run-pidstat.sh -------------------------------------------------------------------------------- /kafka-connect/run-tls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/kafka-connect/run-tls.sh -------------------------------------------------------------------------------- /kafka-connect/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/kafka-connect/run.sh -------------------------------------------------------------------------------- /kafka-connect/template/agent.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/kafka-connect/template/agent.conf.erb -------------------------------------------------------------------------------- /keep_forward/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/keep_forward/Gemfile -------------------------------------------------------------------------------- /keep_forward/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/keep_forward/README.md -------------------------------------------------------------------------------- /keep_forward/agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/keep_forward/agent.conf -------------------------------------------------------------------------------- /keep_forward/dummer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/keep_forward/dummer.conf -------------------------------------------------------------------------------- /keep_forward/receiver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/keep_forward/receiver.conf -------------------------------------------------------------------------------- /one_forward/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/one_forward/Gemfile -------------------------------------------------------------------------------- /one_forward/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/one_forward/README.md -------------------------------------------------------------------------------- /one_forward/agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/one_forward/agent.conf -------------------------------------------------------------------------------- /one_forward/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/one_forward/docker-compose.yml -------------------------------------------------------------------------------- /one_forward/dummer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/one_forward/dummer.conf -------------------------------------------------------------------------------- /one_forward/receiver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/one_forward/receiver.conf -------------------------------------------------------------------------------- /out_forward/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_forward/Gemfile -------------------------------------------------------------------------------- /out_forward/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_forward/README.md -------------------------------------------------------------------------------- /out_forward/agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_forward/agent.conf -------------------------------------------------------------------------------- /out_forward/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_forward/docker-compose.yml -------------------------------------------------------------------------------- /out_forward/dummer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_forward/dummer.conf -------------------------------------------------------------------------------- /out_forward/flowcounter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_forward/flowcounter.conf -------------------------------------------------------------------------------- /out_forward/receiver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_forward/receiver.conf -------------------------------------------------------------------------------- /out_kafka/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_kafka/Gemfile -------------------------------------------------------------------------------- /out_kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_kafka/README.md -------------------------------------------------------------------------------- /out_kafka/agent-tls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_kafka/agent-tls.conf -------------------------------------------------------------------------------- /out_kafka/agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_kafka/agent.conf -------------------------------------------------------------------------------- /out_kafka/agent2-tls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_kafka/agent2-tls.conf -------------------------------------------------------------------------------- /out_kafka/agent2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_kafka/agent2.conf -------------------------------------------------------------------------------- /out_kafka/agent_buffered-tls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_kafka/agent_buffered-tls.conf -------------------------------------------------------------------------------- /out_kafka/agent_buffered.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_kafka/agent_buffered.conf -------------------------------------------------------------------------------- /out_kafka/dummer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_kafka/dummer.conf -------------------------------------------------------------------------------- /out_kafka/run-pidstat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/out_kafka/run-pidstat.sh -------------------------------------------------------------------------------- /peer_deliver/22000_deliver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/peer_deliver/22000_deliver.conf -------------------------------------------------------------------------------- /peer_deliver/22001_deliver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/peer_deliver/22001_deliver.conf -------------------------------------------------------------------------------- /peer_deliver/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/peer_deliver/Gemfile -------------------------------------------------------------------------------- /peer_deliver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/peer_deliver/README.md -------------------------------------------------------------------------------- /peer_deliver/agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/peer_deliver/agent.conf -------------------------------------------------------------------------------- /peer_deliver/deliver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/peer_deliver/deliver.conf -------------------------------------------------------------------------------- /peer_deliver/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/peer_deliver/docker-compose.yml -------------------------------------------------------------------------------- /peer_deliver/dummer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/peer_deliver/dummer.conf -------------------------------------------------------------------------------- /peer_deliver/flowcounter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/peer_deliver/flowcounter.conf -------------------------------------------------------------------------------- /peer_deliver/multi_thread_agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/peer_deliver/multi_thread_agent.conf -------------------------------------------------------------------------------- /peer_deliver/receiver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/peer_deliver/receiver.conf -------------------------------------------------------------------------------- /round_robin_deliver/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/round_robin_deliver/Gemfile -------------------------------------------------------------------------------- /round_robin_deliver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/round_robin_deliver/README.md -------------------------------------------------------------------------------- /round_robin_deliver/agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/round_robin_deliver/agent.conf -------------------------------------------------------------------------------- /round_robin_deliver/deliver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/round_robin_deliver/deliver.conf -------------------------------------------------------------------------------- /round_robin_deliver/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/round_robin_deliver/docker-compose.yml -------------------------------------------------------------------------------- /round_robin_deliver/dummer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/round_robin_deliver/dummer.conf -------------------------------------------------------------------------------- /round_robin_deliver/flowcounter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/round_robin_deliver/flowcounter.conf -------------------------------------------------------------------------------- /round_robin_deliver/multi_thread_agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/round_robin_deliver/multi_thread_agent.conf -------------------------------------------------------------------------------- /round_robin_deliver/multi_thread_deliver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/round_robin_deliver/multi_thread_deliver.conf -------------------------------------------------------------------------------- /round_robin_deliver/receiver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/round_robin_deliver/receiver.conf -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/README.md -------------------------------------------------------------------------------- /template/Terraform/fluentd.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/Terraform/fluentd.tf -------------------------------------------------------------------------------- /template/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/Vagrantfile -------------------------------------------------------------------------------- /template/ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/ansible.cfg -------------------------------------------------------------------------------- /template/ansible/host_vars/metrics.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | td_agent_target: metrics 3 | -------------------------------------------------------------------------------- /template/ansible/host_vars/server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/host_vars/server.yaml -------------------------------------------------------------------------------- /template/ansible/playbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/playbook.yaml -------------------------------------------------------------------------------- /template/ansible/roles/agent/files/send-metrics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/agent/files/send-metrics.rb -------------------------------------------------------------------------------- /template/ansible/roles/agent/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/agent/tasks/main.yaml -------------------------------------------------------------------------------- /template/ansible/roles/client/files/run-benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/client/files/run-benchmark.sh -------------------------------------------------------------------------------- /template/ansible/roles/client/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/client/tasks/main.yaml -------------------------------------------------------------------------------- /template/ansible/roles/fluentd/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/fluentd/defaults/main.yaml -------------------------------------------------------------------------------- /template/ansible/roles/fluentd/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/fluentd/tasks/main.yaml -------------------------------------------------------------------------------- /template/ansible/roles/fluentd/templates/td-agent.conf.kafka.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/fluentd/templates/td-agent.conf.kafka.j2 -------------------------------------------------------------------------------- /template/ansible/roles/fluentd/templates/td-agent.conf.kafka2.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/fluentd/templates/td-agent.conf.kafka2.j2 -------------------------------------------------------------------------------- /template/ansible/roles/fluentd/templates/td-agent.conf.kafka_buffered.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/fluentd/templates/td-agent.conf.kafka_buffered.j2 -------------------------------------------------------------------------------- /template/ansible/roles/fluentd/templates/td-agent.conf.metrics.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/fluentd/templates/td-agent.conf.metrics.j2 -------------------------------------------------------------------------------- /template/ansible/roles/kafka/defaults/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/kafka/defaults/main.yaml -------------------------------------------------------------------------------- /template/ansible/roles/kafka/files/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/kafka/files/run.sh -------------------------------------------------------------------------------- /template/ansible/roles/kafka/files/server.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/kafka/files/server.properties -------------------------------------------------------------------------------- /template/ansible/roles/kafka/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/kafka/tasks/main.yaml -------------------------------------------------------------------------------- /template/ansible/roles/kafka/templates/FluentdSourceConnector.properties.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/kafka/templates/FluentdSourceConnector.properties.j2 -------------------------------------------------------------------------------- /template/ansible/roles/metrics/defaults/main.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | docker_compose_version: 1.18.0 3 | -------------------------------------------------------------------------------- /template/ansible/roles/metrics/files/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/metrics/files/docker-compose.yaml -------------------------------------------------------------------------------- /template/ansible/roles/metrics/tasks/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/ansible/roles/metrics/tasks/main.yaml -------------------------------------------------------------------------------- /template/generate-hosts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/generate-hosts.rb -------------------------------------------------------------------------------- /template/run-benchmark-scenario.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluent/fluentd-benchmark/HEAD/template/run-benchmark-scenario.sh --------------------------------------------------------------------------------