Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to visualize data from a Postgresql in Kibana?

I need to some visualize data from a Postgresql in Kibana. I have also ElasticSearch installed just in case. So how visualize data from a Postgresql in Kibana? Of course, I don't need the whole database, but only data returned by a custom sql query. Also, I want it to be as simple as possible, I wouldn't like to use libraries I really don't need to use.

like image 623
Dett Avatar asked Sep 13 '25 09:09

Dett


1 Answers

Kibana was built with Elastisearch in mind.

Having used it quite a lot in a startup I worked for, I can tell you that even the front-end query DSL (built on Lucene) will only work with Elasticsearch (or might need some serious tweaks).

I would advise you to push your data into Elasticsearch, and just work with Kibana the way it was made for :)

like image 130
Thaume Avatar answered Sep 16 '25 01:09

Thaume