I am trying to insert data to QuestDb using Influx Line Protocol but cannot see anything when I query the table. My code is very simple, ILP line is taken from the QuestDb ILP examples
Poco::Net::SocketAddress socket_address{ "127.0.0.1", 9009 };
Poco::Net::StreamSocket socket{ socket_address };
unsigned char ilp_message[]{ "readings,city=London,make=Omron temperature=23.5,humidity=0.343 1465839830100400000" };
int bytes_sent = socket.sendBytes(ilp_message, sizeof(ilp_message));
But I see back in logs
I i.q.c.l.t.LineTcpConnectionContext [18] peer disconnected with partial measurement, 83 unprocessed bytes
and 83 is the exact message size I am trying to send.