【发布时间】:2017-10-12 10:04:36
【问题描述】:
我是 Logstash 的新手,我正在尝试解析我的多行日志,格式如下
<log level="INFO" time="Wed May 03 08:25:03 CEST 2017" timel="1493792703368" host="host">
<msg><![CDATA[Method=GET URL=http://localhost (Vers=[Version], Param1=[param1], Param2=[param1]) Result(Content-Length=[22222], Content-Type=[text/xml; charset=utf-8]) Status=200 Times=TISP:1098/CSI:-/Me:1/Total:1099]]>
</msg>
</log>
你知道如何在 logstash 配置中实现过滤器,以便能够索引 elasticsearch 中的以下字段
时间、主机、Vers、Param1、Param2、TISP
非常感谢
【问题讨论】:
-
对输入使用多行编解码器,然后使用 xpath 进行 xml 过滤。
标签: logstash logstash-configuration