influxdb-cxx icon indicating copy to clipboard operation
influxdb-cxx copied to clipboard

InfluxDB C++ client library.

Results 35 influxdb-cxx issues
Sort by recently updated
recently updated
newest added

Migrate tests to Catch 3.x.

test

Boolean is available too: https://docs.influxdata.com/influxdb/v1.8/write_protocols/line_protocol_reference/#data-types

enhancement
api-change
feature

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

enhancement

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

enhancement

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...

enhancement

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...

question

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...

documentation

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?

feature
influxdb-2.x

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...

discussion
feature

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...

enhancement