A simple library to pull data from prometheus using its API
Upcoming docs crate documentation.
Add dependency in Cargo.toml
:
toml
[dependencies]
prometheus-http-api = "0.2.0"
Use prometheus_http_api
```rust use prometheushttpapi::*;
async fn main() { let query = Query::Instant(InstantQuery::new("up")); let request = DataSourceBuilder::new("localhost:9090") .withquery(query) .build() .unwrap(); let resjson = request.get().await; tracing::info!("{:?}", res_json); } ```
Instant
support, currently we only support epochs as params./api/v1/series
or /api/v1/labels
/api/v1/label/<label_name>/values
/api/v1/targets
/api/v1/alertmanagers
/api/v1/status/config
/api/v1/status/flags
/api/v1/status/runtimeinfo
, available since prometheus v2.2/api/v1/status/buildinfo
, available since prometheus v2.14/api/v1/status/tsdb
, available since prometheus v2.14/api/v1/status/walreplay
available since prometheus v2.15/api/v1/query_exemplars
(experimental)/api/v1/rules
(doesn't have stability guarantees from prometheus v1)/api/v1/alerts
(doesn't have stability guarantees from prometheus v1)/api/v1/targets/metadata
(experimental)/api/v1/metadata
(experimental)Since prometheus v2.18, require -web.enable-admin-api
/api/v1/admin/tsdb/snapshot
/api/v1/admin/tsdb/delete_series
/api/v1/admin/tsdb/clean_tombstones
Requires --web.enable-remote-write-receiver
.
/api/v1/write
since prometheus v2.33 not efficient way to push data.json::Value
is not necessarily a number, it may be a string:
> JSON does not support special float values such as NaN, Inf, and -Inf, so sample values
> are transferred as quoted JSON strings rather than raw numbers.