gpt4 book ai didi

elasticsearch - 使用 Logstash 解析 XML 文件

转载 作者:行者123 更新时间:2023-12-02 22:16:33 25 4
gpt4 key购买 nike

我正在尝试在 Logstash 中解析 XML 文件。我想使用 XPath 来解析 XML 中的文档。因此,当我运行我的配置文件时,数据加载到 elasticsearch 中,但它不是我想要加载数据的方式。 elasticsearch加载的数据是xml文档中的每一行

我的 XML 文件的结构

enter image description here

我想要实现的目标:

在elasticsearch中创建存储以下内容的字段

ID =1
Name = "Finch"

我的配置文件:

input{
file{
path => "C:\Users\186181152\Downloads\stations.xml"
start_position => "beginning"
sincedb_path => "/dev/null"
exclude => "*.gz"
type => "xml"
}
}
filter{
xml{
source => "message"
store_xml => false
target => "stations"
xpath => [
"/stations/station/id/text()", "station_id",
"/stations/station/name/text()", "station_name"
]
}
}

output{
elasticsearch{
codec => json
hosts => "localhost"
index => "xmlns"
}
stdout{
codec => rubydebug
}
}

Logstash 中的输出:

{
"station_name" => "%{station_name}",
"path" => "C:\Users\186181152\Downloads\stations.xml",
"@timestamp" => 2018-02-09T04:03:12.908Z,
"station_id" => "%{station_id}",
"@version" => "1",
"host" => "BW",
"message" => "\t\r",
"type" => "xml"
}

最佳答案

多行过滤器允许将 xml 文件创建为单个事件,我们可以使用 xml-filter 或 xpath 解析 xml 以在 elasticsearch 中提取数据。在多行过滤器中,我们提到了一个模式(在下面的示例中),logstash 使用它来扫描您的 xml 文件。一旦模式与之后的所有条目匹配,将被视为单个事件。

以下是我的数据的工作配置文件示例

input {
file {
path => "C:\Users\186181152\Downloads\stations3.xml"
start_position => "beginning"
sincedb_path => "/dev/null"
exclude => "*.gz"
type => "xml"
codec => multiline {
pattern => "<stations>"
negate => "true"
what => "previous"
}
}
}

filter {
xml {
source => "message"
store_xml => false
target => "stations"
xpath => [
"/stations/station/id/text()", "station_id",
"/stations/station/name/text()", "station_name"
]
}
}

output {
elasticsearch {
codec => json
hosts => "localhost"
index => "xmlns24"
}
stdout {
codec => rubydebug
}
}

关于elasticsearch - 使用 Logstash 解析 XML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48710367/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com