Winlogbeatで複数ファイルを振り分ける方法

複数ディレクトリに格納されたファイルをwinlogbeatからlogstashにファイルを送信した後で、ディレクトリ毎にファイルを格納したいです。

filebeatであれば、tagsで振り分けができたのですがwinlogbeatではfilebeatでいう、tagsのような振り分けに適したパラメータがあるのでしょうか?
ちなみにfilebeatでは以下のようにディレクトリ毎に振り分けをしています。

output {
  if "filebeat" in [tags] {
    file {
    path => "/var/tmp/logstash/localhost/filebeat.log"
     }
  }
  else if "secure" in [tags] {
     file {
      path => "/var/tmp/logstash/localhost/secure.log"
   }
}

どなたか、ご存じでしたらご教示願います💦

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.