因此,基本上我有一個日誌或文本文件,我想要使用ELK進行可視化。我可以在系統上設置elasticsearch和kibana。這是我現在的logstash配置文件。如何將logstash中的log/txt文件傳輸到elasticsearch
input { file {
path => "G:/everything.log"
start_position => "beginning"
} }
filter {
}
output {
elasticsearch { hosts => ["localhost:9200"]
index => "example" }
stdout { codec => rubydebug }
}
當在瀏覽器中我打開http://localhost:9200/這是執行GET/_cat /索引之後所出現
{
"name" : "1rtH6q6",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "oicreqLyQ_iNiTrOQ0sYPQ",
"version" : {
"number" : "5.4.1",
"build_hash" : "2cfe0df",
"build_date" : "2017-05-29T16:05:51.443Z",
"build_snapshot" : false,
"lucene_version" : "6.5.1"
},
"tagline" : "You Know, for Search"
}
我kibana控制檯
·V &漂亮
health status index uuid pri rep docs.count docs.deleted store.size pri.store.size
yellow open .kibana fxFjIS55Q9-qAgqLlPE0Cw 1 1 2 0 6.3kb 6.3kb
yellow open windows_events YUBWMzRpRTmEdu6E2UoCXg 5 1 2 0 12.6kb 12.6kb
請幫我解決這個問題
目前尚不清楚你的問題是什麼。你想達到什麼目的? – Val
好吧,所以我基本上想要使用ELK在我的日誌文件中形象化我的錯誤日誌.......請儘可能幫助我一步一步 –
如果您打開http:// localhost:5601上的Kibana,會發生什麼情況? – Val