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
ifx.write(wrapper)
File "/usr/local/lib/python2.7/dist-packages/influxdb/client.py", line 262, in write
expected_response_code=expected_response_code
File "/usr/local/lib/python2.7/dist-packages/influxdb/client.py", line 242, in request
raise InfluxDBClientError(response.content, response.status_code)
InfluxDBClientError: 500: {"error":"timeout"}
# curl -i -XPOST 'http://localhost:8086/write?db=test&precision=s' --data-binary 'temperature,machine=unit42,type=assembly external=25,internal=37 1434059627'
HTTP/1.1 500 Internal Server Error
Request-Id: db2cef09-3c64-11e5-95e5-000000000000
X-Influxdb-Version: 0.9.2
Date: Thu, 06 Aug 2015 17:59:22 GMT
Content-Length: 8
Content-Type: text/plain; charset=utf-8
timeout
All get requests that SELECT data timeout
# curl -G 'http://localhost:8086/query' --data-urlencode "db=test" --data-urlencode "q=SELECT * FROM temperature"
timeout 15s
Curl: things that work
# curl http://localhost:8086
404 page not found
# curl -X GET http://localhost:8086/write
Method Not Allowed
get requests that SHOW data are fine
# curl -G 'http://localhost:8086/query' --data-urlencode "db=test" --data-urlencode "q=SHOW DATABASES"
{"results":[{"series":[{"name":"databases","columns":["name"],"values":[["test"]]}]}]}
Client logs
Server Logs
Curl: Things that don't work
Curl: things that work
Server load:
The text was updated successfully, but these errors were encountered: