├── .DS_Store ├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CONDUCT.md ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── influxdb_authentication_and_authorization.R ├── influxdb_connection.R ├── influxdb_database_management.R ├── influxdb_diagnostics.R ├── influxdb_helper.R ├── influxdb_json_parser.R ├── influxdb_line_protocol.R ├── influxdb_post.R ├── influxdb_query.R ├── influxdb_schema_exploration.R ├── influxdb_select.R ├── influxdb_write.R ├── influxdbr.R └── zzz.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── influxdbr.Rproj ├── man ├── check_srv_comm.Rd ├── create_database.Rd ├── create_user.Rd ├── get_precision_divisor.Rd ├── httr_GET.Rd ├── httr_POST.Rd ├── influx_connection.Rd ├── influx_ping.Rd ├── influx_post.Rd ├── influx_query.Rd ├── influx_select.Rd ├── influx_write.Rd ├── influxdbr.Rd ├── show_databases.Rd ├── show_diagnostics.Rd └── show_stats.Rd └── tests ├── testthat.R └── testthat ├── test_query.R ├── test_schema_exploration.R └── test_write.R /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/influxdb_authentication_and_authorization.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/influxdb_authentication_and_authorization.R -------------------------------------------------------------------------------- /R/influxdb_connection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/influxdb_connection.R -------------------------------------------------------------------------------- /R/influxdb_database_management.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/influxdb_database_management.R -------------------------------------------------------------------------------- /R/influxdb_diagnostics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/influxdb_diagnostics.R -------------------------------------------------------------------------------- /R/influxdb_helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/influxdb_helper.R -------------------------------------------------------------------------------- /R/influxdb_json_parser.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/influxdb_json_parser.R -------------------------------------------------------------------------------- /R/influxdb_line_protocol.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/influxdb_line_protocol.R -------------------------------------------------------------------------------- /R/influxdb_post.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/influxdb_post.R -------------------------------------------------------------------------------- /R/influxdb_query.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/influxdb_query.R -------------------------------------------------------------------------------- /R/influxdb_schema_exploration.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/influxdb_schema_exploration.R -------------------------------------------------------------------------------- /R/influxdb_select.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/influxdb_select.R -------------------------------------------------------------------------------- /R/influxdb_write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/influxdb_write.R -------------------------------------------------------------------------------- /R/influxdbr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/influxdbr.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /influxdbr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/influxdbr.Rproj -------------------------------------------------------------------------------- /man/check_srv_comm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/check_srv_comm.Rd -------------------------------------------------------------------------------- /man/create_database.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/create_database.Rd -------------------------------------------------------------------------------- /man/create_user.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/create_user.Rd -------------------------------------------------------------------------------- /man/get_precision_divisor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/get_precision_divisor.Rd -------------------------------------------------------------------------------- /man/httr_GET.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/httr_GET.Rd -------------------------------------------------------------------------------- /man/httr_POST.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/httr_POST.Rd -------------------------------------------------------------------------------- /man/influx_connection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/influx_connection.Rd -------------------------------------------------------------------------------- /man/influx_ping.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/influx_ping.Rd -------------------------------------------------------------------------------- /man/influx_post.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/influx_post.Rd -------------------------------------------------------------------------------- /man/influx_query.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/influx_query.Rd -------------------------------------------------------------------------------- /man/influx_select.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/influx_select.Rd -------------------------------------------------------------------------------- /man/influx_write.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/influx_write.Rd -------------------------------------------------------------------------------- /man/influxdbr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/influxdbr.Rd -------------------------------------------------------------------------------- /man/show_databases.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/show_databases.Rd -------------------------------------------------------------------------------- /man/show_diagnostics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/show_diagnostics.Rd -------------------------------------------------------------------------------- /man/show_stats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/man/show_stats.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_query.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/tests/testthat/test_query.R -------------------------------------------------------------------------------- /tests/testthat/test_schema_exploration.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/tests/testthat/test_schema_exploration.R -------------------------------------------------------------------------------- /tests/testthat/test_write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dleutnant/influxdbr/HEAD/tests/testthat/test_write.R --------------------------------------------------------------------------------