Sending data from VUgen to InfluxDB

Hello!
I tried to send data from Micro Focus VUGen to InfluxDB like this:

Action()
{
web_submit_data(
“influx”,
“Action=http://localhost:8086/write?db=test”,
“Method=POST”,
“Snapshot=t1.inf”,
ITEMDATA,
“Name=weather temp”, “Value=35”,
ENDITEM,
LAST
);
return 0;
}

and get responce from server:

{“error”:“unable to parse ‘weather+temp=35’: missing fields”}

Now, what’s the problem?

Hello @gorklon,
Welcome!
I don’t know anything about MicroFocus VUGen,

But maybe try putting our ITEMDATA in line protocol?
Like
"mymeasurement,name=weather_temp Value=35"
Thanks!
Let me know what you get.