Kibana

官网简介: https://www.elastic.co/guide/en/kibana/current/introduction.html

官网下载: https://www.elastic.co/cn/downloads/kibana

logstash-6-1-4

下载解压,执行

./bin/kibana

打开http://localhost:5601,

如何切换中文

config/kibana.yml添加

i18n.locale: "zh-CN"

重新启动,即可生效

Kibana详细入门教程: https://www.cnblogs.com/chenqionghe/p/12503181.html?utm_source=tuicool&utm_medium=referral

Kibana介绍、安装和使用: https://blog.csdn.net/qq_18769269/article/details/80843810

简单的条件查询

GET user/_search
{
  "query": {
    "match": {
      "id":2
    }
  }
}

  

 kibana快速上手: https://www.jianshu.com/p/7bf9a3dfeb9b

原文地址:https://www.cnblogs.com/cxscode/p/13289613.html