influxdb-cxx
influxdb-cxx copied to clipboard
InfluxDB C++ client library.
Boolean is available too: https://docs.influxdata.com/influxdb/v1.8/write_protocols/line_protocol_reference/#data-types
While the _curl_ API does it's job it's still C. Replacing with a more C++ like API could simplify and improve the HTTP code (related: #90). ### Suggestions - https://github.com/libcpr/cpr
Use fixed with types instead of `int` / `long long int` in `Point::addField(…)`. Docs: https://docs.influxdata.com/influxdb/v1.8/write_protocols/line_protocol_reference/#data-types
Hi I am getting errors for supporting uint64_t values insertions into influxDB What is your suggestion to fix this? ``` test.cpp:122:114: error: cannot convert ‘long long unsigned int’ to ‘const...
I was wondering if I can set multiple timestamps for a point like start and end and name them. Also, I like to update the timestamps. How should I do...
Hi, I am trying to use your library to be integrated to my C program. unfortunately I do not see any tutorial on how to use APIs and examples. Could...
In Influx 2.0 the authentication is done via tokens. https://docs.influxdata.com/influxdb/v2.0/write-data/developer-tools/api/#example-api-write-request Is this somehow already supported in influxdb-cxx?
In some instances, the influxdb host has HTTPS set using self signed certs (test environments). Without the following option set, curl will complain about the self signed cert and the...
In BoostSupport.cxx queryImpl(), the response to the query (const auto response = transport->query(querty);) returns a JSON string and then loaded into a ptree. so, all field data is represented as...