I'm new with this platform (ThingsBoard) and I'm finding dificulties to understand the mechanics..
My problem is: I am sending, from my NodeMCU, data with this format:

Where the date is a string and the value is a int.
tb.sendTelemetryString("data_completa", data.c_str());
delay(100);
tb.sendTelemetryInt("potencia", potencia);
tb.loop();
Serial.print(data.c_str());
Serial.print("\t");
Serial.println(potencia);
But when the data are received on ThingsBoard, the dashboard don't show all the data..

The weirdest thing is: doing debug in the Rule Chains, everything seems ok!
(I checked, each topic is a parameter from the Telemetry. There are 20 on total, resulting in the 10 lines showed on Serial)
I can't work with this, even because I will proccess the messages to interpretate and generate results...
Any tips?
