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
use crate::{clear::Clear, metric::Histogram};
use parking_lot::Mutex;
use serde::{Serialize, Serializer};
pub struct AtomicHdrHistogram {
inner: Mutex<HdrHistogram>,
}
impl Histogram for AtomicHdrHistogram {
fn with_bound(max_bound: u64) -> Self {
let histo = HdrHistogram::with_bound(max_bound);
let inner = Mutex::new(histo);
AtomicHdrHistogram { inner }
}
fn record(&self, value: u64) {
self.inner.lock().record(value);
}
}
impl Clear for AtomicHdrHistogram {
fn clear(&self) {
self.inner.lock().clear();
}
}
impl Serialize for AtomicHdrHistogram {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
use std::ops::Deref;
let inner = self.inner.lock();
let inner = inner.deref();
Serialize::serialize(inner, serializer)
}
}
use std::{fmt, fmt::Debug};
impl Debug for AtomicHdrHistogram {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let histo = self.inner.lock();
write!(f, "AtomicHdrHistogram {{ {:?} }}", &*histo)
}
}
pub struct HdrHistogram {
histo: hdrhistogram::Histogram<u64>,
}
impl HdrHistogram {
pub fn with_bound(max_bound: u64) -> Self {
let histo = hdrhistogram::Histogram::<u64>::new_with_bounds(1, max_bound, 2)
.expect("Could not instantiate HdrHistogram");
HdrHistogram { histo }
}
pub fn record(&mut self, value: u64) {
self.histo.saturating_record(value);
}
pub fn clear(&mut self) {
self.histo.reset();
}
}
impl Serialize for HdrHistogram {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
let hdr = &self.histo;
macro_rules! ile {
($e:expr) => {
&MetricAlias(concat!("!|quantile=", $e), hdr.value_at_quantile($e))
};
}
macro_rules! qual {
($e:expr) => {
&MetricAlias("<|", $e)
};
}
use serde::ser::SerializeMap;
let mut tup = serializer.serialize_map(Some(10))?;
tup.serialize_entry("samples", qual!(hdr.len()))?;
tup.serialize_entry("min", qual!(hdr.min()))?;
tup.serialize_entry("max", qual!(hdr.max()))?;
tup.serialize_entry("mean", qual!(hdr.mean()))?;
tup.serialize_entry("stdev", qual!(hdr.stdev()))?;
tup.serialize_entry("90%ile", ile!(0.9))?;
tup.serialize_entry("95%ile", ile!(0.95))?;
tup.serialize_entry("99%ile", ile!(0.99))?;
tup.serialize_entry("99.9%ile", ile!(0.999))?;
tup.serialize_entry("99.99%ile", ile!(0.9999))?;
tup.end()
}
}
struct MetricAlias<T: Serialize>(&'static str, T);
impl<T: Serialize> Serialize for MetricAlias<T> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
serializer.serialize_newtype_struct(self.0, &self.1)
}
}
impl Debug for HdrHistogram {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let hdr = &self.histo;
let ile = |v| hdr.value_at_percentile(v);
write!(
f,
"HdrHistogram {{
samples: {}, min: {}, max: {}, mean: {}, stdev: {},
90%ile = {}, 95%ile = {}, 99%ile = {}, 99.9%ile = {}, 99.99%ile = {} }}",
hdr.len(),
hdr.min(),
hdr.max(),
hdr.mean(),
hdr.stdev(),
ile(90.0),
ile(95.0),
ile(99.0),
ile(99.9),
ile(99.99)
)
}
}
use std::cell::RefCell;
impl Histogram for RefCell<HdrHistogram> {
fn with_bound(max_value: u64) -> Self {
RefCell::new(HdrHistogram::with_bound(max_value))
}
fn record(&self, value: u64) {
self.borrow_mut().record(value);
}
}
impl Clear for RefCell<HdrHistogram> {
fn clear(&self) {
self.borrow_mut().clear();
}
}