Spreadsheet_safe setting in csv output plugin?

HI,

Why this spreadsheet_safe plugin is used in logstash and how does it effect my output?
I went through this site but didn't get a clear picture of why it is used?

https://www.elastic.co/guide/en/logstash/current/plugins-outputs-csv.html#plugins-outputs-csv-spreadsheet_safe

Thanks

When enabled, column values that start with "=" will be escaped with single quotes so the field value won't be interpreted as a formula by a spreadsheet program. In other words,

foo,=1+2,bar

will be turned into

foo,'=1+2',bar

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