我有一个问题,我需要阅读一个文本文件与logstash后,看到在kibana,当我检查这个logstash.conf与输入stdin工作,但当我改变了文件stdin我不能得到工作。这是我的logstash.conf:
input {
file {
type => "log"
path => "C:\Users\elveg\Desktop\ELK\log.txt"
start_position => "beginning"
sincedb_path => "NUL"
ignore_older => "0"
}
}
filter {
grok {
match => { "message" => "%{WORD:texto}" }
}
date {
match => [ "@timestamp" , "dd/MMM/yyyy:HH:mm:ss Z" ]
}
}
output {
elasticsearch {
hosts => ["localhost:9200"]
index => ["example"]
}
stdout {
codec => rubydebug
}
}
我需要帮忙
1条答案
按热度按时间j7dteeu81#
在路径设置中尝试使用正斜杠而不是反斜杠。