#prometheus-metrics #metrics-collection #health-check #grpc #connection-pool #rocket #rocket-web

valensas-actuator

A library that provides Prometheus metrics collection capabilities for Rocket applications

8 unstable releases (3 breaking)

0.4.1 Sep 22, 2023
0.4.0 Sep 7, 2023
0.3.0 Aug 23, 2023
0.2.0 Aug 21, 2023
0.1.3 Jul 13, 2023

#205 in HTTP server

Download history 1/week @ 2024-01-06 1/week @ 2024-01-20 1/week @ 2024-01-27 3/week @ 2024-02-03 22/week @ 2024-02-24 43/week @ 2024-03-02 23/week @ 2024-03-09 10/week @ 2024-03-16 8/week @ 2024-03-23

90 downloads per month
Used in valensas-rocket

MIT license

35KB
714 lines

Valensas Actuator

This library provides facilities for web server lifecycle operations.

Features:

  • Health checks: liveness and readiness

  • Prometheus metric collection

    • Rocket http request metrics

    • Tonic grpc request metrics

    • r2d2 connection pool metrics

    • Tokio runtime metrics

Installation

Add the following to your Cargo.toml:

[dependencies]
valensas-actuator = "*"

Features

The following crate features are available to use:

health: includes health check related functionalities

health-tonic: includes tonic-health health indicator

health-diesel: includes diesel health indicator

promtheteus-rocket: includes Prometheus scrap endpoint and Rocket http request metric collection

prometheus-tonic: includes Tonic grpc request metric collection

prometheus-r2d2: includes r2d2 connection pool metrics collection

Examples

For detailed usage examples, see the examples directory.

health.rs

Contains examples on how to configure health check endpoints and custom health indicators.

Run with cargo run --example health --features health,health-diesel.

prometheus.rs

Contains examples on how to configure Prometheus scrap endpoint and Rocket request metric collection.

Run with cargo run --example prometheus --features prometheus-rocket.

prometheus_tonic.rs

Contains examples on how to configure Prometheus scrap endpoint and Tonic gRPC request metric collection.

Run with cargo run --example prometheus_tonic --features prometheus-tonic.

prometheus_r2d2.rs

Contains examples on how to configure the r2d2 connection pool collector to expose pool usage metrics.

Run with cargo run --example prometheus_r2d2 --features prometheus-r2d2

prometheus_tokio.rs

Contains examples on how to configure the Tokio runtime pool collector to expose runtime usage metrics.

Dependencies

~15–53MB
~852K SLoC