My config file is:
if [type] == "syslog"
{
csv {
fields => ["Dia","Hora","Evento","Usuario","Politica","SesionID","Web","Enviado_Bytes","Recibido_Bytes","Origen","Destino"]
path => "D:\NavegacionUsuarios\Navegacion-%{+YYYY-MM-dd}.txt"
csv_options => {"col_sep" => "," "row_sep" => "\n"}
}
stdout { codec => rubydebug }
}
But the output contains only 1 line. I need a new line for each record. We use Windows and logstash-7.7.1. If i remove cvs_options, it doesn't solve it.
If I open csv file with notepad, i can't see return lines, but If I open it with other editors, i can see return lines. I'd like to see these returns lines with notepad.
With logstash-6.2.4 it works fine.