Empty measurement after metrics sending

Hello everyone, a brief outline of how it works:
query from Influxdb cloud → telegraf → influxdbv2 OSS.
Problem: according to the logs, all metrics are successfully sent from telegraf to my influxdbv2, but on influxdbv2 itself I see only the name measurement, but there is no data itself, just an empty measurement.

Telegraf config:

[agent]
interval = “10s”
round_interval = true
metric_batch_size = 1000
metric_buffer_limit = 10000
collection_jitter = “0s”
flush_interval = “10s”
flush_jitter = “0s”
precision = “0s”
debug = true
logtarget = “file”
logfile = “C:/Program Files/Telegraf/telegraf.log”
omit_hostname = false
[[outputs.influxdb_v2]]
urls = [“http://localhost:8086”]
token = “Token”
organization = “Org”
bucket = “Bucket”
[[outputs.file]]
files = [“C:/Program Files/Telegraf/metrics.out”]
data_format = “influx”
[[inputs.influxdb_v2_listener]]
service_address = “:8085”

Log from telegraf.log:

2024-03-11T10:36:19Z D! [outputs.file] Wrote batch of 1 metrics in 0s
2024-03-11T10:36:19Z D! [outputs.file] Buffer fullness: 0 / 10000 metrics
2024-03-11T10:36:19Z D! [outputs.influxdb_v2] Wrote batch of 1 metrics in 3.3999ms
2024-03-11T10:36:19Z D! [outputs.influxdb_v2] Buffer fullness: 0 / 10000 metrics
2024-03-11T10:36:29Z D! [outputs.file] Wrote batch of 3 metrics in 0s
2024-03-11T10:36:29Z D! [outputs.file] Buffer fullness: 0 / 10000 metrics
2024-03-11T10:36:29Z D! [outputs.influxdb_v2] Wrote batch of 3 metrics in 2.4766ms
2024-03-11T10:36:29Z D! [outputs.influxdb_v2] Buffer fullness: 0 / 10000 metrics

But here is a screenshot of my influxdbv2, I can’t understand where my data is and at what stage is it lost?

My data, the line is taken from the metrics.out log file:

FUD007,host=MSI battery0/PropertyLatitude=0,battery0/Soc=93,battery0/GlobalMaxVoltage=336,battery0/GlobalMinVoltage=331,battery0/PropertyMetric=0,battery0/Soh=100,battery0/BatteryId=70,battery0/DischargeMaxCurrent=120,battery0/Voltage=718,battery0/ChargeMaxCurrent=120,battery0/MinimumTemperature=0,battery0/PropertyLocation=0,battery0/PropertyLongitude=0,battery0/MaximumTemperature=17 1710153360000

Okay, thanks everyone for your help!)
The problem is that I make a timestamp in milliseconds, but influxdb accepts it in nanoseconds, after correcting the timestamp everything fell into place.
Be more careful than me!

@kravchukmail23 thanks so much for sharing your question and your solution!