用于弹性搜索的远程 GUI 客户端
Remote GUI client for elastic search
我在网上搜索了足够多但没有找到解决方案。
是否有用于 Elastic Search 服务器的远程 GUI 客户端,就像 Oracle SQL 开发人员,以便查看远程弹性数据库的架构和其他详细信息。
目前我正在使用弹性头插件
它不允许我连接到远程弹性集群。它仅在弹性服务器托管在同一台机器上时才有效。我还将以下条目添加到 elastic.yml 文件,但不起作用。说 no connection to the remote host
.
#http.cors.enable: true
#http.cors.allow-origin: "remotehosturl:9200"
您需要删除两行前面的 #
字符,因为注释掉了该行,因此没有任何效果。
此外,CORS 的 correct settings 被命名为 http.cors.enabled
而不是 http.cors.enable
所以你应该包括这两行:
http.cors.enabled: true
http.cors.allow-origin: "remotehosturl:9200"
你也可以选择 other plugins, such as Marvel, Kopf or the Sense Chrome plugin (soon available as a Kibana-powered standalone tool)
Marvel 的感觉是 elastic.It 维护的 elasticsearch 官方 GUI 客户端现在甚至可以在 ES 2.0 版的生产中免费使用。 Sense 查询用户界面有 intellisense,这在编写复杂查询时非常有用,并提供许多其他关于集群健康、CPU 负载、内存(构建在 kibana 之上)的指标。我更喜欢 sense 而不是 head.It至少值得一看。
您必须在远程服务器上安装此插件。
安装- https://www.elastic.co/downloads/marvel
Dejavu 是 Elasticsearch Head 的 MIT-licensed 现代替代品,我是该项目的贡献者之一。
您可以将其用作 remote web app, a chrome extension or as a docker image。
支持:
- Excel 类似于 UI 的 CRUD 操作——包括查看和添加来自 GUI、
的映射的能力
- 视觉过滤器,
- 能够直接导入 CSV / JSON 文件,
- 查询浏览量,
- 以 CSV/JSON 格式导出数据。
在远程模式下使用它时,您必须将 Elasticsearch 配置设置为允许来自 dejavu 应用 运行.
来源的 CORS
您可以在 https://github.com/appbaseio/dejavu 阅读有关该项目的更多信息。
我在网上搜索了足够多但没有找到解决方案。
是否有用于 Elastic Search 服务器的远程 GUI 客户端,就像 Oracle SQL 开发人员,以便查看远程弹性数据库的架构和其他详细信息。
目前我正在使用弹性头插件
它不允许我连接到远程弹性集群。它仅在弹性服务器托管在同一台机器上时才有效。我还将以下条目添加到 elastic.yml 文件,但不起作用。说 no connection to the remote host
.
#http.cors.enable: true
#http.cors.allow-origin: "remotehosturl:9200"
您需要删除两行前面的 #
字符,因为注释掉了该行,因此没有任何效果。
此外,CORS 的 correct settings 被命名为 http.cors.enabled
而不是 http.cors.enable
所以你应该包括这两行:
http.cors.enabled: true
http.cors.allow-origin: "remotehosturl:9200"
你也可以选择 other plugins, such as Marvel, Kopf or the Sense Chrome plugin (soon available as a Kibana-powered standalone tool)
Marvel 的感觉是 elastic.It 维护的 elasticsearch 官方 GUI 客户端现在甚至可以在 ES 2.0 版的生产中免费使用。 Sense 查询用户界面有 intellisense,这在编写复杂查询时非常有用,并提供许多其他关于集群健康、CPU 负载、内存(构建在 kibana 之上)的指标。我更喜欢 sense 而不是 head.It至少值得一看。
您必须在远程服务器上安装此插件。 安装- https://www.elastic.co/downloads/marvel
Dejavu 是 Elasticsearch Head 的 MIT-licensed 现代替代品,我是该项目的贡献者之一。
您可以将其用作 remote web app, a chrome extension or as a docker image。
支持:
- Excel 类似于 UI 的 CRUD 操作——包括查看和添加来自 GUI、 的映射的能力
- 视觉过滤器,
- 能够直接导入 CSV / JSON 文件,
- 查询浏览量,
- 以 CSV/JSON 格式导出数据。
在远程模式下使用它时,您必须将 Elasticsearch 配置设置为允许来自 dejavu 应用 运行.
来源的 CORS您可以在 https://github.com/appbaseio/dejavu 阅读有关该项目的更多信息。