@SelfTuts please share the working docker-compose setup lagstash as well Note: The video shows logstash local setup its working fine for me in a local setup. I'm trying add logstash to docker compose file as well but I'm unable connect to Kafka
This is best video i have ever been seen . Cool nice thank you . point to point any videos for ansible script patching or provision linux server through vmware clone ?
Hey SelfTuts Awesome explanation i have small doubt, i installed kafka, elk environment on different instances IN AWS to establish a connection between kafka and logstash which ip address should i provide either public IP or private IP in conf directory of logstash
Hello, great tutorial. I am having some issues when both containers are running. I can see that all the 5 services are running when using command "docker ps" but when I try to open the UI for either kibana or kafka_manager , both won't open, only one would open. When I run the containers one at a time then kibana or kafka_manager would open, depending upon which service is running, but not together. Any help would be appreciated.
Awesome. Looking forward to more in-depth contents about ELK stack
This is the one of the best video tutorial I have seen for education.
very intuitive and required level of details
Facing issues with cmak unable to create topic can you help
Great tutorial - extensive enough and doen't skip any step.
excellent work !
Wonderful work my brother, this has helped me a lot, what a presentation.
Thanks
Really good video, I have subscribed to your channel looking forward to more such videos👍
Awesome, thank you!
A very useful tutorial 😘🙏
subscribed. Great tutorial and amazing channel.
Saludos desde Argentina.
Excellent !!!
Great video
Excellent explanation. Good job
Thanks for the video bro, very informative :)
One non-related query, what font do you configured in the jet brains IDE? :)
Informative, easily and cleanly explained.... subscribed (you owned) 😀
Can I have reference guide for processing data before sending to elasticsearch?
@SelfTuts
please share the working docker-compose setup lagstash as well
Note: The video shows logstash local setup its working fine for me in a local setup. I'm trying add logstash to docker compose file as well but I'm unable connect to Kafka
Very informative thanks
Thanks
How do I start logstash using cmd or shell . Bcs systemctl doesn’t work
Great video. Thnx 4 sharing
Great tutorial, just what i was looking for. Thanks
This is best video i have ever been seen . Cool nice thank you . point to point any videos for ansible script patching or provision linux server through vmware clone ?
Thanks Sir, do we have to pay or take youtube subscription for accessing your website ?
Great tutorials, subscribed
15:30 You should simply do a lambda instead of created a one line function. Other than that, good video!
Excellent post. The only problem is the pace is very fast.. I guess using AI it can be re-recorded with slower pace professionally
subscribed - awesome content.
How logstash connect to secure kafka using keycloak?
All services get up except kafka. Any idea why that happens?
Very good demo. Thank you
A wonderful video
your website is not working. Gives error "Error establishing a database connection"
so nice tutoorial bro
the links are broken, can you update them
Hey SelfTuts Awesome explanation
i have small doubt, i installed kafka, elk environment on different instances IN AWS
to establish a connection between kafka and logstash which ip address should i provide either public IP or private IP in conf directory of logstash
Can we monitor.. consumer lag , fetch lag and all.. using logstach and kibana?
why your site is currently not reachable?
Hello, great tutorial. I am having some issues when both containers are running. I can see that all the 5 services are running when using command "docker ps" but when I try to open the UI for either kibana or kafka_manager , both won't open, only one would open. When I run the containers one at a time then kibana or kafka_manager would open, depending upon which service is running, but not together. Any help would be appreciated.
Issue seems to be with Kafka Manager service, as without this service I can run Kibana and other services. Need to find an alternative to this.
great, thanks
Hi nice tutorial, do you think you can share the sources in any repository?
very good video! keep it up!
Great video - thanks
Best videos!
Thanks a lot!
Does Your website still down?
@selftuts, did you know your website is down?
Thanks it's up now
@@codewithrajranjan it's down again.
@@codewithrajranjan still down
website is not working, Can you please check
your website is down.
website is down
Your website is not reachable
Can you add ssl info for secure data transfer
Amazing.
links are down?
Awesome
Hello, can you do a video about api connections in kafka,
About real-time, data processing.
Cool!
good very cool
Given links are not reachable
version: "3.3"
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.4.0
container_name: elasticsearch
restart: always
environment:
- xpack.security.enabled=false
- discovery.type=single-node
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
cap_add:
- IPC_LOCK
volumes:
- elasticsearch-data:/usr/share/elasticsearch/data
ports:
- 9200:9200
kibana:
container_name: kibana
image: docker.elastic.co/kibana/kibana:7.4.0
restart: always
environment:
- ELASTICSEARCH_HOSTS=elasticsearch:9200 # address of elasticsearch docker container which kibana will connect
ports:
- 5601:5601
depends_on:
- elasticsearch # kibana will start when elasticsearch has started
volumes:
elasticsearch-data:
version: "3"
services:
zookeeper:
image: zookeeper
restart: always
container_name: zookeeper
hostname: zookeeper
ports:
- 2181:2181
environment:
ZOO_MY_ID: 1
kafka:
image: wurstmeister/kafka
container_name: kafka
ports:
- 9092:9092
environment:
KAFKA_ADVERTISED_HOST_NAME: [machine-ip-address]
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
kafka_manager:
image: hlebalbau/kafka-manager:stable
container_name: kakfa-manager
restart: always
ports:
- "9000:9000"
environment:
ZK_HOSTS: "zookeeper:2181"
APPLICATION_SECRET: "random-secret"
command: -Dpidfile.path=/dev/null
@@lucaspendola7696 Thanks for sharing. Saves lot of time when the website provided in description is down.