我是ELK的新手,我尝试从loacl Windows10计算机将Logstash日志文件发送到Elasticsearch,尽管该服务已成功启动,但我在Kibana中看不到索引/ logs。
谁能帮助我解决这个问题
Logstash / Elasticsearch版本:7.8.0
我的Logstash conf文件
input {
file {
path => "C:\ELK\test.log"
type => "fe"
start_position => "beginning"
}
}
output {
stdout { codec => rubydebug }
elasticsearch {
hosts => "localhost:9200"
index => "relog"
}
}