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
use prometheus::{
proto::{LabelPair, Metric, MetricFamily, MetricType},
Encoder, Result,
};
use std::{collections::HashMap, io::Write};
const JSON_FORMAT: &str = "application/json";
#[derive(Debug, Default)]
pub struct JsonEncoder;
impl Encoder for JsonEncoder {
fn encode<W: Write>(&self, metric_familys: &[MetricFamily], writer: &mut W) -> Result<()> {
let mut export_me: HashMap<String, f64> = HashMap::new();
for mf in metric_familys {
let name = mf.get_name();
let metric_type = mf.get_field_type();
for m in mf.get_metric() {
match metric_type {
MetricType::COUNTER => {
export_me.insert(
flatten_metric_with_labels(name, m),
m.get_counter().get_value(),
);
}
MetricType::GAUGE => {
export_me.insert(
flatten_metric_with_labels(name, m),
m.get_gauge().get_value(),
);
}
MetricType::HISTOGRAM => {
let h = m.get_histogram();
export_me.insert(
flatten_metric_with_labels(&format!("{}_count", name), m),
h.get_sample_count() as f64,
);
export_me.insert(
flatten_metric_with_labels(&format!("{}_sum", name), m),
h.get_sample_sum(),
);
}
_ => {
}
}
}
}
writer.write_all(serde_json::to_string(&export_me).unwrap().as_bytes())?;
Ok(())
}
fn format_type(&self) -> &str {
JSON_FORMAT
}
}
fn flatten_metric_with_labels(name: &str, metric: &Metric) -> String {
let res = String::from(name);
if metric.get_label().is_empty() {
res
} else {
let values: Vec<&str> = metric
.get_label()
.iter()
.map(LabelPair::get_value)
.filter(|&x| !x.is_empty())
.collect();
let values = values.join(".");
if !values.is_empty() {
format!("{}.{}", res, values)
} else {
res
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use prometheus::{
core::{Collector, Metric},
IntCounter, IntCounterVec, Opts,
};
use serde_json::Value;
#[test]
fn test_flatten_labels() {
let counter = IntCounter::new("counter_1", "Test counter 1").unwrap();
let res = flatten_metric_with_labels("counter_1", &counter.metric());
assert_eq!("counter_1", res.as_str());
let counter = IntCounterVec::new(
Opts::new("counter_2", "Example counter for testing"),
&["label_me"],
)
.unwrap();
let res =
flatten_metric_with_labels("counter_2", &counter.with_label_values(&[""]).metric());
assert_eq!("counter_2", res.as_str());
let res = flatten_metric_with_labels(
"counter_2",
&counter.with_label_values(&["hello"]).metric(),
);
assert_eq!("counter_2.hello", res.as_str());
let counter = IntCounterVec::new(
Opts::new("counter_2", "Example counter for testing"),
&["label_me", "label_me_too"],
)
.unwrap();
let res =
flatten_metric_with_labels("counter_3", &counter.with_label_values(&["", ""]).metric());
assert_eq!("counter_3", res.as_str());
let res = flatten_metric_with_labels(
"counter_3",
&counter.with_label_values(&["hello", "world"]).metric(),
);
assert_eq!("counter_3.hello.world", res.as_str());
}
#[test]
fn test_encoder() {
let counter = IntCounterVec::new(
Opts::new("testing_count", "Test Counter"),
&["method", "result"],
)
.unwrap();
counter.with_label_values(&["get", "302"]).inc();
counter.with_label_values(&["get", "302"]).inc();
counter.with_label_values(&["get", "404"]).inc();
counter.with_label_values(&["put", ""]).inc();
let metric_family = counter.collect();
let mut data_writer = Vec::<u8>::new();
let encoder = JsonEncoder;
let res = encoder.encode(&metric_family, &mut data_writer);
assert!(res.is_ok());
let expected: &str = r#"
{
"testing_count.get.302": 2.0,
"testing_count.get.404": 1.0,
"testing_count.put": 1.0
}"#;
let v: Value = serde_json::from_slice(&data_writer).unwrap();
let expected_v: Value = serde_json::from_str(expected).unwrap();
assert_eq!(v, expected_v);
}
}