Crates.io | rustana |
lib.rs | rustana |
version | 0.0.2 |
source | src |
created_at | 2019-05-21 12:17:23.103791 |
updated_at | 2019-05-21 12:40:08.58598 |
description | |
homepage | https://github.com/telia-oss/rustana |
repository | https://github.com/telia-oss/rustana |
max_upload_size | |
id | 135814 |
size | 10,913 |
Rustana is no available on crates.io ye. To use Rustana in your Rust program built with Cargo, add it as a dependency.
[dependencies]
rustana = { git = "https://github.com/telia-oss/rustana.git", tag = "0.0.1" }
Rustana containing Rust types for Grafana's API.
use rustana::GrafanaClient;
let mut client = GrafanaClient::new(&url, &token);
fn main() {
let dashboard_id = "FT5SF";
match client.get_dashboard_by_id(&dashboard_id) {
Ok(dashboard) => println!("Dashboard response: {:?}", dashboard),
Err(e) => println!("error fetching dashboard: {:?}", e),
}
}