Cant I get the csv file from netflow data and send with UDP or TCP?

I wanna get the csv file from netflow data and send with UDP or TCP in output.

My code is like below :

input{
  file{
    path=>"netflow.pcap"
    codec=>netflow{
      versions=>[5]
    }
  }
}
output{
  csv{
    fields =>"some field"
    csv_options =>{col_sep =>","}
    path =>"location"
   }
}

So, How can I get the csv file and send with UDP or TCP(output).

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