0

コンテンツを変更せずに Logstash を使用してバイナリ ファイル (pdf、xls、その他...) をロードする方法。

現在、私はロードしようとしています

input {
file {
    path => "C:/path/files/*"
    type => "gesamt"
    start_position => "beginning"
    sincedb_path => "NUL"
}
}
filter {    
   multiline {
      pattern => "/.*./gesamt"
      negate => true
      what => "previous"
  }

base64 {
    field => "blob"   
}
}
output {
  elasticsearch {
    hosts => ["http://localhost:9200"]
    index => "index-name"
    pipeline=>"test-pipeline"
 }
}

マルチライン フィルタがバイナリ コンテンツを破損しているようです。

4

1 に答える 1