1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-20 11:52:18 +03:00
wezterm/wezterm-gui/src/stats.rs

129 lines
4.1 KiB
Rust
Raw Normal View History

2020-10-02 21:50:50 +03:00
use config::configuration;
2020-01-04 12:21:51 +03:00
use hdrhistogram::Histogram;
use metrics::{Key, Recorder};
use std::collections::HashMap;
use std::sync::atomic::{AtomicBool, Ordering};
2020-01-04 12:21:51 +03:00
use std::sync::{Arc, Mutex};
use std::time::{Duration, Instant};
2020-01-04 12:33:23 +03:00
use tabout::{tabulate_output, Alignment, Column};
2020-01-04 12:21:51 +03:00
static ENABLE_STAT_PRINT: AtomicBool = AtomicBool::new(true);
2020-01-04 12:21:51 +03:00
struct Inner {
histograms: HashMap<Key, Histogram<u64>>,
}
fn pctile_latency(histogram: &Histogram<u64>, p: f64) -> Duration {
Duration::from_nanos(histogram.value_at_percentile(p))
}
impl Inner {
fn run(inner: Arc<Mutex<Inner>>) {
let mut last_print = Instant::now();
2020-01-04 12:33:23 +03:00
let cols = vec![
Column {
name: "STAT".to_string(),
alignment: Alignment::Left,
},
Column {
name: "p50".to_string(),
alignment: Alignment::Left,
},
Column {
name: "p75".to_string(),
alignment: Alignment::Left,
},
Column {
name: "p95".to_string(),
alignment: Alignment::Left,
},
];
2020-01-04 12:21:51 +03:00
loop {
std::thread::sleep(Duration::from_secs(10));
if !ENABLE_STAT_PRINT.load(Ordering::Acquire) {
break;
}
2020-01-04 12:21:51 +03:00
let seconds = configuration().periodic_stat_logging;
if seconds == 0 {
continue;
}
if last_print.elapsed() >= Duration::from_secs(seconds) {
let inner = inner.lock().unwrap();
2020-01-04 12:33:23 +03:00
let mut data = vec![];
2020-01-04 12:21:51 +03:00
for (key, histogram) in &inner.histograms {
2020-01-04 19:37:31 +03:00
if key.name().ends_with(".size") {
let p50 = histogram.value_at_percentile(50.);
let p75 = histogram.value_at_percentile(75.);
let p95 = histogram.value_at_percentile(95.);
data.push(vec![
key.to_string(),
format!("{:.2?}", p50),
format!("{:.2?}", p75),
format!("{:.2?}", p95),
]);
} else {
let p50 = pctile_latency(histogram, 50.);
let p75 = pctile_latency(histogram, 75.);
let p95 = pctile_latency(histogram, 95.);
data.push(vec![
key.to_string(),
format!("{:.2?}", p50),
format!("{:.2?}", p75),
format!("{:.2?}", p95),
]);
}
2020-01-04 12:21:51 +03:00
}
2020-01-04 12:33:23 +03:00
data.sort_by(|a, b| a[0].cmp(&b[0]));
eprintln!();
tabulate_output(&cols, &data, &mut std::io::stderr().lock()).ok();
2020-01-04 12:21:51 +03:00
last_print = Instant::now();
}
}
}
}
pub struct Stats {
inner: Arc<Mutex<Inner>>,
}
impl Stats {
pub fn new() -> Self {
Self {
inner: Arc::new(Mutex::new(Inner {
histograms: HashMap::new(),
})),
}
}
pub fn init() -> anyhow::Result<()> {
let stats = Self::new();
let inner = Arc::clone(&stats.inner);
std::thread::spawn(move || Inner::run(inner));
let rec = Box::new(stats);
metrics::set_boxed_recorder(rec)
.map_err(|e| anyhow::anyhow!("Failed to set metrics recorder:{}", e))
}
}
impl Recorder for Stats {
fn increment_counter(&self, key: Key, value: u64) {
log::trace!("counter '{}' -> {}", key, value);
}
fn update_gauge(&self, key: Key, value: i64) {
log::trace!("gauge '{}' -> {}", key, value);
}
fn record_histogram(&self, key: Key, value: u64) {
let mut inner = self.inner.lock().unwrap();
let histogram = inner
.histograms
2020-01-06 02:14:32 +03:00
.entry(key)
2020-01-04 12:21:51 +03:00
.or_insert_with(|| Histogram::new(2).expect("failed to crate new Histogram"));
histogram.record(value).ok();
}
}