Hi,
I'm actually trying to generate a csv file, for a GeoIP database.
My goal is to have this:
"startIpNum","endIpNum","locId"
And i actually have this, without the double quotes:
startIpNum,endIpNum,locId
How to add the double quotes ? I try to escape them, but i obtain this:
"\"""startIpNum"\""","\"""endIpNum"\""","\"""locId"\"""
I try with single quote, but i obtain this :
"""startIpNum""","""endIpNum""","""locId"""
For info, here is my grok filter, where i generate the field :
add_field => { "startIpNum" => "%{store_net}1" }
Thanks for your time !