https://github.com/watchdg/rust-influx
https://github.com/watchdg/rust-influx
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/watchdg/rust-influx
- Owner: WatchDG
- Created: 2020-02-08T18:35:58.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-26T19:56:51.000Z (over 6 years ago)
- Last Synced: 2025-02-28T20:16:59.723Z (over 1 year ago)
- Language: Rust
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# influx
```rust
let mut influx = Influx::new("127.0.0.1:8086".into());
influx.connect().unwrap();
let ping = influx.ping().unwrap();
influx.disconnect().unwrap();
```