pub async fn build_information(host: &str) -> Result<BuildInformation, Error>
Expand description

Retrieve Prometheus server build information.

This is just a convenience function for one-off requests, see Client::build_information.

use prometheus_http_query::{build_information, Error};

#[tokio::main(flavor = "current_thread")]
async fn main() -> Result<(), Error> {
    let response = build_information("http://localhost:9090").await;

    assert!(response.is_ok());

    Ok(())
}