You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This point either has two measurement names or two tags, one with a value (fleet) and one without a value (readings2).
InfluxDB OSS 2.x interprets the issue with the point as the latter and gives the following error:
{
"code": "invalid",
"message": "unable to parse 'readings,readings2,fleet=Alberta velocity=21.30 1577836800000000000': missing tag value"
}
The influxdb_line_protocol crate does not return an error for this line protocol point. The parser interprets the first tag key as a part of the second tag key, producing the following ParsedLine struct:
Consider the following invalid line protocol:
This point either has two measurement names or two tags, one with a value (
fleet
) and one without a value (readings2
).InfluxDB OSS 2.x interprets the issue with the point as the latter and gives the following error:
The
influxdb_line_protocol
crate does not return an error for this line protocol point. The parser interprets the first tag key as a part of the second tag key, producing the followingParsedLine
struct:The text was updated successfully, but these errors were encountered: