From fe16c5dbd1189dc1511408c24e5bf2f622c06f09 Mon Sep 17 00:00:00 2001 From: Chris Beck Date: Thu, 18 Dec 2025 13:21:06 -0700 Subject: [PATCH] add a readme for prometheus-http-client --- prometheus-http-client/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 prometheus-http-client/README.md diff --git a/prometheus-http-client/README.md b/prometheus-http-client/README.md new file mode 100644 index 0000000..967ae9a --- /dev/null +++ b/prometheus-http-client/README.md @@ -0,0 +1,13 @@ +# prometheus-http-client + +Makes requests to the prometheus query API. With `plot` feature, also provides +a way to plot resposnes from prometheus. + +*Note*: There are many prometheus query clients for rust -- I only made another because +I thought I only needed one or two routes so I would just use `reqwest` directly. + +Over time it has grown and now I feel a bit silly. + +This should probably be replaced +with [`prometheus-http-query`](https://docs.rs/prometheus-http-query/latest/prometheus_http_query/) +or one of the other competitors, except for the plotting functionality.