简体   繁体   中英

Using kibana and mongodb together without elasticsearch

Is it possible to use kibana front-end along with a mongodb back-end without using elastic search?

I'm using logstash to parse logs and store in mongodb and want to use kibana to display data?

If not, are there any alternatives to implement kibana+mongodb?

I'm afraid that Kibana is specifically designed to use the Elasticsearch API. While they do both provide JSON responses, they don't return compatible data structures and even if they did, Mongo would not provide the same features (facets/filters) that Kibana makes heavy use of.

You could probably index your MongoDB data in Elasticsearch following instructions similar to https://coderwall.com/p/sy1qcw but then you are unnecessarily duplicating your data in 2 systems.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM