我正在尝试使用ELK堆栈解析日志。下面是我的样本日志
2015-12-11 12:05:24+0530 [process] INFO: process 0.24.5 started 我正在使用下面的grok
grok{
match => {"message" => "(?m)%{TIMESTAMP_ISO8601:processdate}\s+\[%{WORD:name}\]\s+%{LOGLEVEL:loglevel}"}
}我的弹性搜索映射是
{
"properties": {
"processdate":{
"type": "date",
"format" : "yyyy-MM-dd HH:mm:ss+SSSS"
},
"name":{"type" : "string"},
"loglevel":{"type" : "string"},
}
}但是当我加载到弹性搜索中时,
"error"=>{"type"=>"mapper_parsing_exception", "reason"=>"failed to parse [processdate]", "caused_by"=>{"type"=>"illegal_argument_exception", "reason"=>"Invalid format: \"2015-12-11 12:05:39+0530\" is malformed at \" 12:05:39+0530\""}}}}, :level=>:warn}如何将其修改为适当的数据格式?我在弹性搜索中添加了正确的日期格式。
更新:本地主机:9200/log
{"log":{"aliases":{},"mappings":{"filelog":{"properties":{"processdate":{"type":"date","format":"yyyy-MM-dd' 'HH:mm:ssZ"},"loglevel":{"type":"string"},"name":{"type":"string"}}}},"settings":{"index":{"creation_date":"1458218007417","number_of_shards":"5","number_of_replicas":"1","uuid":"_7ffuioZS7eGBbFCDMk7cw","version":{"created":"2020099"}}},"warmers":{}}}发布于 2016-03-17 14:08:07
所得到的错误意味着您的日期格式是错误的。像这样修正您的日期格式,即在结束时使用Z (时区)而不是+SSSS (秒的分数):
{
"properties": {
"processdate":{
"type": "date",
"format" : "yyyy-MM-dd HH:mm:ssZ"
},
"name":{"type" : "string"},
"loglevel":{"type" : "string"}
}
}此外,根据我们之前的交换,您的elasticsearch输出插件缺少document_type设置,应该像这样配置,以便使用自定义filelog映射类型(否则将使用默认的logs类型,而您的自定义映射类型不会启动):
output {
elasticsearch {
hosts => ["172.16.2.204:9200"]
index => "log"
document_type => "filelog"
}
}https://stackoverflow.com/questions/36060412
复制相似问题