UPS advice and node red

@TotallyInformation may I ask something further from you please?

I have everything up and running now, I had to use some more steps due to having a Dockerised Node Red install, I even wrote a guide to remind myself for future.

From a previous post I believe you use influxDB as well?

Well my issue is that the outputs from your flow are strings,whereas 'real' values are needed to display in Grafana. I'm wondering if you have a way around this?

Example:
image

I have this function working for one payload at a time, but handling the whole lot is evading me for now:

let pay =  msg.payload.split(" ");
msg.payload = {[pay[1]] : parseFloat(pay[0])};
return msg;