I have events already in an index looking like this: { "location": "Paris", "temperature": 25, "humidity": 57 } I have a data model looking like this: { "location": string "name": string "value": number } and so I would need my event to show up as two events under this data model: { "location":"Paris" "name": "temperature" "value": 25 } and { "location":"Paris" "name": "humidity" "value": 57 } What would be the best way to proceed? I have had no luck with field manipulation / tables so far.
... View more