29 releases (breaking)
| 0.27.0 | Jan 12, 2026 |
|---|---|
| 0.26.1 | Nov 7, 2025 |
| 0.21.1 | Jun 5, 2025 |
| 0.20.0 | Dec 31, 2024 |
| 0.6.0 | Oct 30, 2022 |
#512 in Value formatting
1,286 downloads per month
Used in k8sql
34KB
799 lines
Kubernetes Metrics API Resource definitions
Portions of the code are copied from other projects, like kdash
Usage example
use k8s_metrics::v1beta1 as metricsv1;
use kube::api;
async fn pod_metrics(client: &kube::Client, namespace: &str) -> kube::Result<Vec<metricsv1::PodMetrics>> {
let lp = api::ListParams::default();
api::Api::<metricsv1::PodMetrics>::namespaced(client.clone(), namespace)
.list(&lp)
.await
.map(|list| list.items)
}
Dependencies
~34MB
~546K SLoC