Output plugin for InfluxDB does not follow InfluxDB's Line Protocol.
The reference says tag names and values should not be quoted and characters like comma and space should be escaped using back-slash, but current implementation does not follow the spec.
Expected:
tag1=value1,tag2=value\ with\ space
Actual:
tag1="value1",tag2="value with space"
As a result of this behavior, every tag values in influxdb have additional double quotes attached.
Output plugin for InfluxDB does not follow InfluxDB's Line Protocol.
The reference says tag names and values should not be quoted and characters like comma and space should be escaped using back-slash, but current implementation does not follow the spec.
Expected:
Actual:
As a result of this behavior, every tag values in influxdb have additional double quotes attached.