Skip to content

Example: Netflow to Elastic

Lorenzo Mangani edited this page Mar 5, 2017 · 11 revisions
input {
  netflowv9 {
    port => 1234
  }
}

filter {
    json_fields {}
}

output {
  elasticsearch {
    host => 127.0.0.1
    port => 9200
    bulk_limit => 1000
    bulk_timeout => 100
    index_prefix => netflow
    data_type => netflow
  }
}
r
Clone this wiki locally