Skip to main content

Mountain/Air/AirClient/
AirMetrics.rs

1
2//! Metrics from the Air daemon.
3
4#[derive(Debug, Clone)]
5pub struct Struct {
6	pub memory_usage_mb:f64,
7
8	pub cpu_usage_percent:f64,
9
10	pub network_usage_mbps:f64,
11
12	pub disk_usage_mb:f64,
13
14	pub average_response_time:f64,
15}