Hello everyone,
I Have documents with hundreds of fields with unique field names.
To avoid a huge mapping, I would like to convert them to the key/value style.
So out of something like
"deviceType" : "rfid",
"attempts": 1
i want to get something like
"properties" : [
{ "key" : "deviceType", "valueKeyword": "rfid" },
{ "key" : "attempts", "valueInteger": 1 },
]
Is this possible with logstash?