【发布时间】:2015-01-15 09:11:51
【问题描述】:
我正在尝试使 Elasticsearch+Kibana 工作。出于某种原因,我得到了一个空白的 Kibana 仪表板:
我的 config.js 是一个默认文件,只更改了一行:
elasticsearch: "http://127.0.0.1:9200",
Elasticsearch 工作正常,http://127.0.0.1:9200 返回这个 json:
{
"status" : 200,
"name" : "Ikthalon",
"version" : {
"number" : "1.1.1",
"build_hash" : "f1585f096d3f3985e73456debdc1a0745f512bbc",
"build_timestamp" : "2014-04-16T14:27:12Z",
"build_snapshot" : false,
"lucene_version" : "4.7"
},
"tagline" : "You Know, for Search"
}
但是为什么我的 Kibana 仪表板是空白的?也许这是因为我使用 URL file:///home/sergey/Desktop/kibana-3.1.1/index.html#/dashboard/file/default.json 运行它?如果是这样,我该如何让它发挥作用?
【问题讨论】:
-
为什么要使用“file://”格式?为什么不
http://localhost:9292?
标签: elasticsearch logstash kibana