Inserting multiple columns at once in InfluxDB

I found the solution, finally. RTFM they said...

Anyway, here is the flow code:

[{"id":"821ed147.a04a9","type":"tab","label":"Sensors","disabled":false,"info":""},{"id":"3d43f4f9.77f9cc","type":"mqtt in","z":"821ed147.a04a9","name":"sensors/home/workshop/BMP085","topic":"sensors/home/workshop/BMP085","qos":"2","datatype":"json","broker":"544a35ca.82bdbc","x":160,"y":140,"wires":[["92bba980.922ad8","2c7681a0.8eccde"]]},{"id":"2c7681a0.8eccde","type":"debug","z":"821ed147.a04a9","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","x":570,"y":140,"wires":[]},{"id":"2d0c5747.04bf28","type":"influxdb out","z":"821ed147.a04a9","influxdb":"f0fe03f1.28cb6","name":"workshop-BMP085","measurement":"workshop-BMP085","precision":"s","retentionPolicy":"","x":570,"y":240,"wires":[]},{"id":"92bba980.922ad8","type":"function","z":"821ed147.a04a9","name":"Formatting","func":"var data = {\n    temp: msg.payload.temp,\n    press: msg.payload.press,\n    alt: msg.payload.alt,\n    SLP: msg.payload.SLP,\n    RA: msg.payload.RA\n}\nmsg.payload = data\nreturn msg","outputs":1,"noerr":0,"x":210,"y":240,"wires":[["2d0c5747.04bf28","c3b1779b.ea8c38"]]},{"id":"c3b1779b.ea8c38","type":"debug","z":"821ed147.a04a9","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","x":590,"y":360,"wires":[]},{"id":"64c2e370.049afc","type":"inject","z":"821ed147.a04a9","name":"","topic":"","payload":"","payloadType":"date","repeat":"","crontab":"","once":false,"onceDelay":"","x":180,"y":660,"wires":[["6c6bf02d.8ac09"]]},{"id":"6c6bf02d.8ac09","type":"function","z":"821ed147.a04a9","name":"Fields","func":"msg.payload = {\n    numValue: 123.0,\n    strValue: \"message\",\n    randomValue: Math.random()*10\n}\nreturn msg;","outputs":1,"noerr":0,"x":328,"y":660,"wires":[["54de52b9.99ad0c"]]},{"id":"54de52b9.99ad0c","type":"influxdb out","z":"821ed147.a04a9","influxdb":"1ed2b814.fe29c8","name":"","measurement":"test","x":498,"y":660,"wires":[]},{"id":"544a35ca.82bdbc","type":"mqtt-broker","z":"","name":"broker.x99.fr","broker":"172.18.0.14","port":"1883","clientid":"","usetls":false,"compatmode":false,"keepalive":"60","cleansession":true,"birthTopic":"","birthQos":"0","birthPayload":"","closeTopic":"","closeQos":"0","closePayload":"","willTopic":"","willQos":"0","willPayload":""},{"id":"f0fe03f1.28cb6","type":"influxdb","z":"","hostname":"influxdb","port":"8086","protocol":"http","database":"nodered","name":"","usetls":false,"tls":""},{"id":"1ed2b814.fe29c8","type":"influxdb","z":"821ed147.a04a9","hostname":"127.0.0.1","port":"8086","database":"aTimeSeries","name":"aTimeSeries"}]