简体   繁体   English

使用kibana和mongodb一起没有elasticsearch

[英]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? 是否可以在不使用弹性搜索的情况下使用kibana前端和mongodb后端?

I'm using logstash to parse logs and store in mongodb and want to use kibana to display data? 我正在使用logstash来解析日志并存储在mongodb中并希望使用kibana来显示数据?

If not, are there any alternatives to implement kibana+mongodb? 如果没有,是否有任何替代方案来实施kibana + mongodb?

I'm afraid that Kibana is specifically designed to use the Elasticsearch API. 我担心Kibana是专门设计用于使用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. 虽然它们都提供JSON响应,但它们不返回兼容的数据结构,即使它们确实如此,Mongo也不会提供Kibana大量使用的相同功能(facet / filters)。

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. 你可以按照类似于https://coderwall.com/p/sy1qcw的说明在Elasticsearch中索引你的MongoDB数据,但是你不必在2个系统中复制你的数据。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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