Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kibana + Elasticsearch without Logstash possible?

I am kind of new to Logstash. We have a legacy web application which ships logs directly to Redis server in JSON format. Now I want to display that logs on web interface.
What I read about Elasticsearch and Kibana, I am really impressed by their functionalities.
Is that possible to feed logs from redis to directly elasticsearch and then visualized them using Kibana ?

like image 852
Bhushan Avatar asked Apr 21 '15 06:04

Bhushan


2 Answers

Yes, Kibana can display any information stored in ElasticSearch indexes.

You'll need a way of automatically indexing items from Redis to ElasticSearch though. You can rather write your own script (should be pretty simple in your case) or use existing software like Redis plugin for LogStash or Redis river plugin for ElasticSearch (deprecated)

like image 200
Eugene C Avatar answered Oct 06 '22 01:10

Eugene C


Absolutely, you can use Kibana to browse non-logstash indices just fine.

like image 22
Mischa Arefiev Avatar answered Oct 06 '22 01:10

Mischa Arefiev