├── .gitignore ├── LICENSE ├── README.md ├── architecture.png ├── docker-compose.yml ├── kafka-producer ├── Dockerfile └── udp_to_kafka.py └── logstash └── logstash.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dineshkarthik/real-time-IoT-data-streaming/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dineshkarthik/real-time-IoT-data-streaming/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dineshkarthik/real-time-IoT-data-streaming/HEAD/README.md -------------------------------------------------------------------------------- /architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dineshkarthik/real-time-IoT-data-streaming/HEAD/architecture.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dineshkarthik/real-time-IoT-data-streaming/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /kafka-producer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dineshkarthik/real-time-IoT-data-streaming/HEAD/kafka-producer/Dockerfile -------------------------------------------------------------------------------- /kafka-producer/udp_to_kafka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dineshkarthik/real-time-IoT-data-streaming/HEAD/kafka-producer/udp_to_kafka.py -------------------------------------------------------------------------------- /logstash/logstash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dineshkarthik/real-time-IoT-data-streaming/HEAD/logstash/logstash.conf --------------------------------------------------------------------------------