influxdb-r
influxdb-r copied to clipboard
R library for InfluxDB
The v1 client libraries for InfluxDB were typically developed and maintained by community members. They have all now been succeeded by v2 client libraries developed and maintained by InfluxData in...
@beckettsean @jcheng5 Thanks for your comments. I've changed the influxdb_query function following your suggestions. Now it should return a list of named dataframes (one for every table in the query)....
### Support multiple (older) versions as well as 0.9? Since [the upgrading from 0.8 to 0.9 process is currently in progress](https://influxdb.com/docs/v0.9/administration/upgrading.html), some users may still be using
@svernede thank for your hard work. In this pull request I extend you work. I changed the json parser from "rjson" to "RJSONIO" as it is faster and support NULL....
I'd like to use this influxdb-r library for an InfluxDB with HTTPS scheme (i.e. SSL). However the SSL certificate is currently unsigned in development but I'd still like to test...
a JSON respose ``` "[{"name":"serie1","columns":["time","sequence_number","value","flag"],"points":[[1414771113,14039930001,16,null],[1414770813,14039940001,17,"ok"],[1414770513,14039950001,18,"nok"]]}]" ``` is currently transformed in to the R structure ``` $serie1 time sequence_number value flag 1 1414771113 14039930001 16.0 "ok" 2 1414770813 14039940001 17.8 "nok"...
The influxdb_write function write data to an influxDB database. The input data is a named list of data frames where the names are the series names, and the data frames...