21.6. FAQ
21.6.1.查看 Kibana 数据库 # curl 'http://localhost:9200/_search?pretty' { "took" : 1, "timed_out" : false, "_shards" : { "total" : 1, "successful" : 1, "failed" : 0 }, "hits" : { "total" : 1, "max_score" : 1.0, "hits" : [ { "_index" : ".kibana", "_type" : "config", "_id" : "5.2.2", "_score" : 1.0, "_source" : { "buildNum" : 14723 } } ] } } 21.6.2.logstash 无法写入 elasticsearch elasticsearch 的配置不能省略 9200 端口,否则将无法链接elasticsearch elasticsearch { hosts => ["127.0.0.1:9200"] } 21.6.3.标准输出 #cd /etc/logstas...