1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
//! This crate provides [Prometheus][] style [process metrics][] collector of [metrics][] crate for Linux, macOS, and Windows.
//! Collector code is manually re-written to Rust from an official prometheus client of go ([client_golang][])
//!
//! [Prometheus]: https://prometheus.io/
//! [process metrics]: https://prometheus.io/docs/instrumenting/writing_clientlibs/#process-metrics
//! [metrics]: https://crates.io/crates/metrics
//!
//! # Supported metrics
//!
//! This crate supports the following metrics, equal to what official prometheus client of go ([client_golang][]) provides.
//!
//! | Metric name | Help string | Linux | macOS | Windows |
//! | ---------------------------------- | ------------------------------------------------------ | ----- | ----- | ------- |
//! | `process_cpu_seconds_total` | Total user and system CPU time spent in seconds. | x | x | x |
//! | `process_open_fds` | Number of open file descriptors. | x | x | x |
//! | `process_max_fds` | Maximum number of open file descriptors. | x | x | x |
//! | `process_virtual_memory_bytes` | Virtual memory size in bytes. | x | x | x |
//! | `process_virtual_memory_max_bytes` | Maximum amount of virtual memory available in bytes. | x | x | |
//! | `process_resident_memory_bytes` | Resident memory size in bytes. | x | x | x |
//! | `process_heap_bytes` | Process heap size in bytes. | | | |
//! | `process_start_time_seconds` | Start time of the process since unix epoch in seconds. | x | x | x |
//! | `process_threads` | Number of OS threads in the process. | x | x | |
//!
//! [client_golang]: https://github.com/prometheus/client_golang
//!
//! # Usage
//!
//! Use this crate with [metrics-exporter-prometheus][] as an exporter like:
//!
//! [metrics-exporter-prometheus]: https://crates.io/crates/metrics-exporter-prometheus
//!
//! ```no_run
//! use std::thread;
//! use std::time::{Duration, Instant};
//!
//! use metrics_exporter_prometheus::PrometheusBuilder;
//! use metrics_process::Collector;
//!
//! let builder = PrometheusBuilder::new();
//! builder
//! .install()
//! .expect("failed to install Prometheus recorder");
//!
//! let collector = Collector::default();
//! // Call `describe()` method to register help string.
//! collector.describe();
//!
//! loop {
//! let s = Instant::now();
//! // Periodically call `collect()` method to update information.
//! collector.collect();
//! thread::sleep(Duration::from_millis(750));
//! }
//! ```
//!
//! Or with [axum][] (or any web application framework you like) to collect metrics whenever
//! the `/metrics` endpoint is invoked like:
//!
//! [axum]: https://crates.io/crates/axum
//!
//! ```no_run
//! use axum::{routing::get, Router, Server};
//! use metrics_exporter_prometheus::PrometheusBuilder;
//! use metrics_process::Collector;
//!
//! #[tokio::main]
//! async fn main() {
//! let builder = PrometheusBuilder::new();
//! let handle = builder
//! .install_recorder()
//! .expect("failed to install Prometheus recorder");
//!
//! let collector = Collector::default();
//! // Call `describe()` method to register help string.
//! collector.describe();
//!
//! let addr = "127.0.0.1:9000".parse().unwrap();
//! let app = Router::new().route(
//! "/metrics",
//! get(move || {
//! // Collect information just before handle '/metrics'
//! collector.collect();
//! std::future::ready(handle.render())
//! }),
//! );
//! Server::bind(&addr)
//! .serve(app.into_make_service())
//! .await
//! .unwrap();
//! }
//! ```
//!
//! # Difference from [metrics-process-promstyle][]
//!
//! It seems [metrics-process-promstyle][] only support Linux but this crate (metrics-process) supports Linux, macOS, and Windows.
//! Additionally, this crate supports `process_open_fds` and `process_max_fds` addition to what metrics-process-promstyle supports.
//!
//! [metrics-process-promstyle]: https://crates.io/crates/metrics-process-promstyle
mod collector;
use metrics::{describe_gauge, gauge, Unit};
/// Prometheus style process metrics collector
#[derive(Debug, PartialEq, Eq, Clone)]
pub struct Collector {
prefix: String,
}
impl Default for Collector {
/// Create a new Collector instance
///
/// # Examples
///
/// ```
/// # use metrics_process::Collector;
/// let collector = Collector::default();
/// ```
fn default() -> Self {
Self { prefix: "".into() }
}
}
impl Collector {
/// Add an prefix that is prepended to metric keys.
/// # Examples
///
/// ```
/// # use metrics_process::Collector;
/// let collector = Collector::default().prefix("my_prefix_");
/// ```
pub fn prefix(mut self, prefix: impl Into<String>) -> Self {
self.prefix = prefix.into();
self
}
/// Describe available metrics through `describe_gauge!` macro of `metrics` crate.
///
/// # Example
///
/// ```
/// # use metrics_exporter_prometheus::PrometheusBuilder;
/// # use metrics_process::Collector;
/// # #[tokio::main]
/// # async fn main() {
/// // Recorder must be initialized prior to describe.
/// let builder = PrometheusBuilder::new();
/// builder.install().expect("failed to install recorder/exporter");
///
/// let collector = Collector::default();
/// // Describe collector
/// collector.describe();
/// # }
/// ```
pub fn describe(&self) {
let prefix = &self.prefix;
describe_gauge!(
format!("{}process_cpu_seconds_total", prefix),
Unit::Seconds,
"Total user and system CPU time spent in seconds."
);
describe_gauge!(
format!("{}process_open_fds", prefix),
Unit::Count,
"Number of open file descriptors."
);
describe_gauge!(
format!("{}process_max_fds", prefix),
Unit::Count,
"Maximum number of open file descriptors."
);
describe_gauge!(
format!("{}process_virtual_memory_bytes", prefix),
Unit::Bytes,
"Virtual memory size in bytes."
);
#[cfg(not(target_os = "windows"))]
describe_gauge!(
format!("{}process_virtual_memory_max_bytes", prefix),
Unit::Bytes,
"Maximum amount of virtual memory available in bytes."
);
describe_gauge!(
format!("{}process_resident_memory_bytes", prefix),
Unit::Bytes,
"Resident memory size in bytes."
);
describe_gauge!(
format!("{}process_start_time_seconds", prefix),
Unit::Seconds,
"Start time of the process since unix epoch in seconds."
);
#[cfg(not(target_os = "windows"))]
describe_gauge!(
format!("{}process_threads", prefix),
Unit::Count,
"Numberof OS threads in the process."
);
}
/// Collect metrics and record through `gauge!` macro of `metrics` crate.
///
/// # Example
///
/// ```
/// # use metrics_exporter_prometheus::PrometheusBuilder;
/// # use metrics_process::Collector;
/// # #[tokio::main]
/// # async fn main() {
/// // Recorder must be initialized prior to describe.
/// let builder = PrometheusBuilder::new();
/// builder.install().expect("failed to install recorder/exporter");
///
/// let collector = Collector::default();
/// collector.describe();
/// // Collect metrics
/// collector.collect();
/// # }
/// ```
pub fn collect(&self) {
let prefix = &self.prefix;
let mut m = collector::collect();
if let Some(v) = m.cpu_seconds_total.take() {
gauge!(format!("{}process_cpu_seconds_total", prefix), v);
}
if let Some(v) = m.open_fds.take() {
gauge!(format!("{}process_open_fds", prefix), v as f64);
}
if let Some(v) = m.max_fds.take() {
gauge!(format!("{}process_max_fds", prefix), v as f64);
}
if let Some(v) = m.virtual_memory_bytes.take() {
gauge!(format!("{}process_virtual_memory_bytes", prefix), v as f64);
}
#[cfg(not(target_os = "windows"))]
if let Some(v) = m.virtual_memory_max_bytes.take() {
gauge!(
format!("{}process_virtual_memory_max_bytes", prefix),
v as f64,
);
}
if let Some(v) = m.resident_memory_bytes.take() {
gauge!(format!("{}process_resident_memory_bytes", prefix), v as f64);
}
if let Some(v) = m.start_time_seconds.take() {
gauge!(format!("{}process_start_time_seconds", prefix), v as f64);
}
#[cfg(not(target_os = "windows"))]
if let Some(v) = m.threads.take() {
gauge!(format!("{}process_therads", prefix), v as f64);
}
}
}