Influxdb-rs

InfluxDB Rust Client for Influx APIv2

Build Status

Overview

This is the InfluxDB driver to be utilized with the Rust programming language. It is mainly ASYNC but will include future work to have synchronous actions as well. The driver is aimed to be used with the version 2 of the InfluxDB API. There can be backwards compatibility with the 1.x endpoints but that is not the true aim of this crate.

Status

Usage

Use

[dependencies] influxdb_rs = {path = https://github.com/infosechoudini/influxdb-rs }

http

```Rust use influxdb_rs::Client; use url::Url; use chrono::prelude::*;

[tokio::main]

async fn main() { let client = Client::new(Url::parse("http://localhost:8086").unwrap(), "testbucket", "testorg", "0123456789").await.unwrap();

let now = Utc::now();

let point = Point::new("temporary")
    .add_field("foo", "bar")
    .add_field("integer", 11)
    .add_field("float", 22.3)
    .add_field("'boolean'", false)
    .add_timestamp(now.timestamp());

let result = client.write_point(point, Some(Precision::Seconds), None).await;
if result.is_err(){
    // Error!
}

let later = Utc::now().to_rfc3339().to_string();

client.drop_measurement("temporary", &now.to_rfc3339(), &later).await.unwrap();

} ```

Compatibility

InfluxDB APIv2 API Document

Tested: - [x] OSS 2.3 - [x] OSS 2.2 - [x] OSS 2.1

Thanks

Because influxdbclient-rs only supported the 1.x version. I ended up reading influxdb2-client and influxdb-client-go source code and then wrote a library for 2.x API version for support for my own use. influxdb2-client; although functioning, was not published to crates so I opted to build my own. Enjoy!