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 steps work in influxdb but fail in influxdb2, the config need to change for influxdb since the username and password are required for this version.
System info
The zenoh router v0.10.0-rc built with rustc 1.72.0 (5680fa18f 2023-08-23)
Hi @patrickelectric ,
Influxdb 2.x doesn't support our current approach to get all entries (the ** expression) that was valid in 1.x. Our get_all_entries function should retrieve the last stored value per _measurement. For that we require access to the list of _measurement (key-expressions in case of zenoh) stored in the bucket and then iterate through the list items, querying for the last stored value for each. However, Influxdb 2.x doesn't provide the option to get the list of _measurement through their API. We are currently working on a workaround or alternative approach to provide this.
Describe the bug
When using
curl -X GET http://localhost:8000/\*\*
no data come frominfluxdb2
after a post method.Different from
influxdb
To reproduce
my influx.json5
This steps work in
influxdb
but fail ininfluxdb2
, the config need to change forinfluxdb
since the username and password are required for this version.System info
The zenoh router v0.10.0-rc built with rustc 1.72.0 (5680fa18f 2023-08-23)
The text was updated successfully, but these errors were encountered: