influxdb-cxx
influxdb-cxx copied to clipboard
C++ client library for InfluxDB 1.x/2.x
I was able to build the library with Boost completely removed from my system, but the build fails when I reinstall Boost 1.73.0 (Boost folder is located at /usr/local/include). I've...
The http transport example in the readme does not work: ```` auto influxdb = influxdb::InfluxDBFactory::Get("http://localhost:8086/?db=test"); ```` The trailing slash behind the port is not needed. The `HTTP::initCurlRead(const std::string& url)` (see...
This branch adds the following functionality: - creation of database managed by InfluxDB instances if desired by the developer. - increased exception granularity allowing detect http requests issues when (on...
Adding a `Point` with a double field which has more than 6 digits results in the value being rounded, due to the default rounding precision, see [here](https://en.cppreference.com/w/cpp/io/manip/setprecision). This behavior might...
You open /dev/null, but there's no fclose() statement `FILE *devnull = fopen("/dev/null", "w+");`
`[root@4d9621cf6ce5 build]# cmake .. -- The CXX compiler identification is Intel 19.1.0.20200306 -- Check for working CXX compiler: /opt/intel/sw_dev_tools/compilers_and_libraries_2020.1.219/linux/bin/intel64/icpc -- Check for working CXX compiler: /opt/intel/sw_dev_tools/compilers_and_libraries_2020.1.219/linux/bin/intel64/icpc - works -- Detecting...
Hello, I am writing 2 points with every "for" iteration and query for points database using time start of write and time start of stop write. Everything works fine but...
As the title said, I realised that when I query points the current system using std::chrono makes it that we lose the nanoseconds precision in the timestamp, making it possible...