Multiple measurements in single post to influx DB

Want to write multiple measurement into single post

POST data:
Performance6,host=test01 hostname=“rmq01” type="t2.small"
Performance6,host=test01 hostname=“rmq01” type="t2.small"
Performance,host=test01 hostname=“rmq01” type=“t3.small”

{“error”:“unable to parse ‘Performance6,host=test01 hostname=“aeperf00rmq01” type=“t2.small”’: bad timestamp\nunable to parse ‘Performance6,host=test01 hostname=“rmq01” type=“t2.small”’: bad timestamp\nunable to parse ‘Performance6,host=test01 hostname=“rmq01” type=“t3.small”’: bad timestamp”}

any thoughts on this ^^^

Fields should be separated by comma, not space:
Performance6,host=test01 hostname=“rmq01”,type="t2.small"
________________________________________ ^ ______________

InfluxDB expects a timestamp after the space, so the error “bad timestamp” might be consing.