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
Telegraf response should have X-Influxdb-Error, while the error strings do
not need to be identical they should contain the prefixes unable to parse
and partial write:
$ echo -e "cpu value=" | curl -v 'http://localhost:8086/write?db=telegraf' --data-binary @-
< HTTP/1.1 400 Bad Request
< Content-Type: application/json
< X-Influxdb-Error: unable to parse 'cpu value=': missing field value
<
{"error":"unable to parse 'cpu value=': missing field value"}
$ echo -e "cpu value=84\ncpu value=" | curl -v 'http://localhost:8086/write?db=telegraf' --data-binary @-
< HTTP/1.1 400 Bad Request
< Content-Type: application/json
< X-Influxdb-Error: partial write: unable to parse 'cpu value=': missing field value dropped=0
<
{"error":"partial write: unable to parse 'cpu value=': missing field value dropped=0"}
Relevant telegraf.conf:
System info:
N/A
Steps to reproduce:
cpu value=
cpu value=42\ncpu value=
Expected behavior:
Telegraf response should have
X-Influxdb-Error
, while the error strings donot need to be identical they should contain the prefixes
unable to parse
and
partial write
:Actual behavior:
The text was updated successfully, but these errors were encountered: