我有以下配置文件。但是,當我運行這個時,我得到在終端中更改的時間戳,但日誌沒有發送到ElasticSearch。Logstash日期過濾器不起作用
下面是配置文件:
input {
stdin {
type => "stdin-type"
}
}
filter {
grok {
type => "stdin-type"
patterns_dir=>["./patterns"]
pattern => "%{PARSE_ERROR}"
add_tag=>"%{type1},%{type2},%{slave},ERR_SYSTEM"
}
mutate
{
type=>"stdin-type"
replace => ["@message", "%{message}" ]
replace =>["@timestamp","2013-05-09T05:19:16.876Z"]
}
}
output {
stdout { debug => true debug_format => "json"}
elasticsearch
{
}
}
在取出取代線,該日誌被運出。我哪裏錯了?