grafana 0.1.3

Ergonomic Rust SDK for Grafana's HTTP API, with async and blocking clients.
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::Deserialize;

#[derive(Clone, Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct HealthResponse {
    pub database: Option<String>,
    pub message: Option<String>,
    pub version: Option<String>,
    pub commit: Option<String>,
}