(This issue was originally filed by @GABeech at https://github.com/elastic/logstash/issues/1323) --- I would like the ability to have nested hashes when using the mapping function of the HTTP output. given: `mapping => [ "metric", "test", "tags", [ "name", "Help", "type", "Please"]` The current json output would be: ``` { "metric": "test", "tags": "["name","Help","type","Please"]" } ``` What I would expect would be: ``` { "Metric": "test", "tags": { "name": "Help", "type": "Please" } } ```