Logstash columns format

Hi, I have this issue. I'm trying to send a CSV file to Elasticsearch using logstash. This is the log I get:

[2019-04-02T14:22:18,470][WARN ][logstash.filters.csv ] Error parsing csv {:field=>"message", :source=>"GrupoConsist encia CG_EMPODERAMIENTO\",00000,GREEN,New\r", :exception=>#<CSV::MalformedCSVError: Illegal quoting in line 1.>} [2019-04-02T14:22:18,476][WARN ][logstash.filters.csv ] Error parsing csv {:field=>"message", :source=>"3ffcb8c1-229 b-4575-8373-00f014df1b69,3/31/2019 12:30:23 AM,EPM\\aseverid,Regla RecoverPoint Custom,\"Event Description: \r", :except ion=>#<CSV::MalformedCSVError: Unclosed quoted field on line 1.>}

I think this is due to I have a column AlertDescription when the data comes is like this :

Event Description:
@Operaciones por favor escalar "Gren" si el código de identificación se encuentra en la matriz

CodigoIdentificacion '4008'
GrupoConsistencia CG_EMPODERAMIENO

Does Logstash support this kind of columns with spaces and special characters or not?

Thanks!

GrupoConsist encia CG_EMPODERAMIENTO",00000,GREEN,New\r

You cannot have a closing double quote without a matching opening double quote. That is "Illegal quoting".

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