Skip to content

Example: ZMQ to Elastic

Lorenzo Mangani edited this page Mar 5, 2017 · 1 revision
input {
  zeromq {
    address => ["tcp://0.0.0.0:5555"]
  }
}

filter {
  regex {
    pattern => http_combined
  }
}

output {
  elasticsearch {
    host => localhost
    port => 9200
  }
}
Clone this wiki locally