I am new to setting up my own InfluxDB but have used it a lot with Hass.IO, my LoRa gateway and Node-Red. But now I am after something even easier, but am stumped, I have read the documentation 5 times and tried the same INSERT 5 different ways but cannot get a new measurement created.
INSERT SPK-ABGRASSO-PASP1Mm,Site=Abbiategrasso,Type=Pressure TagDescription='Pump 1 Suction Pressure' Units=m value=3.098737 1546254060
ERR: {"error":"unable to parse 'SPK-ABGRASSO-PASP1Mm,Site=Abbiategrasso,Type=Pressure TagDescription='Pump 1 Suction Pressure' Units=m value=3.098737 1546254060 ': invalid boolean"}
> INSERT SPK-ABGRASSO-PASP1Mm,Site=Abbiategrasso,Type=Pressure TagDescription='Pump 1 Suction Pressure',Units=m,value=3.
098737 1546254060
ERR: {"error":"unable to parse 'SPK-ABGRASSO-PASP1Mm,Site=Abbiategrasso,Type=Pressure TagDescription='Pump 1 Suction Pressure',Units=m,value=3.098737 1546254060 ': invalid boolean"}
> INSERT SPK-ABGRASSO-PASP1Mm,Site=Abbiategrasso,Type=Pressure,TagDescription='Pump 1 Suction Pressure',Units=m value=3.
098737 1546254060
ERR: {"error":"unable to parse 'SPK-ABGRASSO-PASP1Mm,Site=Abbiategrasso,Type=Pressure,TagDescription='Pump 1 Suction Pressure',Units=m value=3.098737 1546254060 ': invalid field format"}
> INSERT SPK_ABGRASSO_PASP1Mm,Site=Abbiategrasso,Type=Pressure,TagDescription='Pump 1 Suction Pressure',Units=m value=3.
098737 1546254060
ERR: {"error":"unable to parse 'SPK_ABGRASSO_PASP1Mm,Site=Abbiategrasso,Type=Pressure,TagDescription='Pump 1 Suction Pressure',Units=m value=3.098737 1546254060 ': invalid field format"}
> INSERT SPK_ABGRASSO_PASP1Mm,Site=Abbiategrasso,Type=Pressure,TagDescription="Pump 1 Suction Pressure",Units=m value=3.
098737 1546254060
ERR: {"error":"unable to parse 'SPK_ABGRASSO_PASP1Mm,Site=Abbiategrasso,Type=Pressure,TagDescription=\"Pump 1 Suction Pressure\",Units=m value=3.098737 1546254060 ': invalid field format"}
> INSERT SPK-ABGRASSO-PASP1Mm,Site=Abbiategrasso,Type=Pressure,TagDescription="Pump 1 Suction Pressure",Units="m" value=
3.098737 1546254060
ERR: {"error":"unable to parse 'SPK-ABGRASSO-PASP1Mm,Site=Abbiategrasso,Type=Pressure,TagDescription=\"Pump 1 Suction Pressure\",Units=\"m\" value=3.098737 1546254060 ': invalid field format"}```
What an I doing wrong?