码迷,mamicode.com
首页 > 数据库 > 详细

logstash-input-jdbc取mysql数据日期格式处理

时间:2018-03-23 14:10:05      阅读:345      评论:0      收藏:0      [点我收藏+]

标签:logstash   elk   elasticsearch   

使用logstash 从mysql取一个datetime类型的数字。 在stdout查看数据json格式取到的字段值为类似 2018-03-23T04:18:33.000Z,因为想使用这个字段作为@timestamp,所以使用logstash的date 去match 。

    date {
      match => ["start_time","ISO8601"]
    }

但实际发现每个document都会附带一个[_dataparserfail]的标签,百思不得姐
google一番后终于明白了,链接:https://discuss.elastic.co/t/trouble-matching-timestamp/83768/4

因为从mysql取到数据的时候start_time 已经是一个时间的数据类型了, 这时候再用date去处理自然失败,如果想使用这个字段作为@timestamp ,老外给的解决方法如下:
In your SQL query, typecast the timestamp as a string.
Use a mutate filter‘s convert option to typecast the field to a string prior to the date filter.
Use a mutate filter to copy the timestamp into @timestamp and overwrite the existing value (use the replace option).

我使用的方法:

    mutate {
      add_field => {"temp_ts" => "%{start_time}"}
    }
    date {
      match => ["temp_ts","ISO8601"]
      remove_field => ["temp_ts"]
    }

logstash-input-jdbc取mysql数据日期格式处理

标签:logstash   elk   elasticsearch   

原文地址:http://blog.51cto.com/itanony/2090248

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!