Reputation: 75
I am new to Apache Kafka and also to data analytics.
I am able to consume messages from Apache kafka consumer in Java.
Now I want to take these real time data and display it like a dashboard.
I want to visualize all these data using any open source tool.
One tool which I found is Druid but the documentation provided is not enough to learn and proceed with that.
Also I read that Druid is very difficult to install and deploy in production.
Any other tools available to do this? Any help is appreciated.
Upvotes: 2
Views: 1869
Reputation: 11
I recently started using Metatron Discovery. https://metatron.app/
It is a free and open source software for data visualization. It supports kafka, so you can visualize your real-time data with a wide variety of charts.
If you are interested in open source, this will be helpful. https://github.com/metatron-app/metatron-discovery/
Upvotes: 1
Reputation: 23
you can use Apache Zeppelin https://zeppelin.apache.org/ to visualise your kafka topics. It has a web interface for notebook and it supports java. You can write your code on it and visualise its output
Upvotes: 1
Reputation: 867
You could also use the Elastic stack. If you get your data with Kafka, then store it in Elasticsearch, you could quickly have a dashboard with Kibana. When I had to install and deploy it, I found it very easy to use.
Upvotes: 0