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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
use std::borrow::Cow;
use crate::collector::Collector;
use crate::MaybeOwned;
#[derive(Debug, Default)]
pub struct Registry {
prefix: Option<Prefix>,
labels: Vec<(Cow<'static, str>, Cow<'static, str>)>,
metrics: Vec<(Descriptor, Box<dyn Metric>)>,
collectors: Vec<Box<dyn Collector>>,
sub_registries: Vec<Registry>,
}
impl Registry {
pub fn with_prefix(prefix: impl Into<String>) -> Self {
Self {
prefix: Some(Prefix(prefix.into())),
..Default::default()
}
}
pub fn register<N: Into<String>, H: Into<String>>(
&mut self,
name: N,
help: H,
metric: impl Metric,
) {
self.priv_register(name, help, metric, None)
}
pub fn register_with_unit<N: Into<String>, H: Into<String>>(
&mut self,
name: N,
help: H,
unit: Unit,
metric: impl Metric,
) {
self.priv_register(name, help, metric, Some(unit))
}
fn priv_register<N: Into<String>, H: Into<String>>(
&mut self,
name: N,
help: H,
metric: impl Metric,
unit: Option<Unit>,
) {
let descriptor =
Descriptor::new(name, help, unit, self.prefix.as_ref(), self.labels.clone());
self.metrics.push((descriptor, Box::new(metric)));
}
pub fn register_collector(&mut self, collector: Box<dyn Collector>) {
self.collectors.push(collector);
}
pub fn sub_registry_with_prefix<P: AsRef<str>>(&mut self, prefix: P) -> &mut Self {
let sub_registry = Registry {
prefix: Some(Prefix(
self.prefix.clone().map(|p| p.0 + "_").unwrap_or_default() + prefix.as_ref(),
)),
labels: self.labels.clone(),
..Default::default()
};
self.priv_sub_registry(sub_registry)
}
pub fn sub_registry_with_label(
&mut self,
label: (Cow<'static, str>, Cow<'static, str>),
) -> &mut Self {
let mut labels = self.labels.clone();
labels.push(label);
let sub_registry = Registry {
prefix: self.prefix.clone(),
labels,
..Default::default()
};
self.priv_sub_registry(sub_registry)
}
fn priv_sub_registry(&mut self, sub_registry: Self) -> &mut Self {
self.sub_registries.push(sub_registry);
self.sub_registries
.last_mut()
.expect("sub_registries not to be empty.")
}
pub(crate) fn iter_metrics(&self) -> MetricIterator {
let metrics = self.metrics.iter();
let sub_registries = self.sub_registries.iter();
MetricIterator {
metrics,
sub_registries,
sub_registry: None,
}
}
pub(crate) fn iter_collectors(&self) -> CollectorIterator {
let collectors = self.collectors.iter();
let sub_registries = self.sub_registries.iter();
CollectorIterator {
prefix: self.prefix.as_ref(),
labels: &self.labels,
collector: None,
collectors,
sub_collector_iter: None,
sub_registries,
}
}
}
#[derive(Debug)]
pub struct MetricIterator<'a> {
metrics: std::slice::Iter<'a, (Descriptor, Box<dyn Metric>)>,
sub_registries: std::slice::Iter<'a, Registry>,
sub_registry: Option<Box<MetricIterator<'a>>>,
}
impl<'a> Iterator for MetricIterator<'a> {
type Item = &'a (Descriptor, Box<dyn Metric>);
fn next(&mut self) -> Option<Self::Item> {
loop {
if let Some(m) = self.metrics.next() {
return Some(m);
}
if let Some(metric) = self.sub_registry.as_mut().and_then(|i| i.next()) {
return Some(metric);
}
self.sub_registry = self
.sub_registries
.next()
.map(|r| Box::new(r.iter_metrics()));
if self.sub_registry.is_none() {
break;
}
}
None
}
}
pub struct CollectorIterator<'a> {
prefix: Option<&'a Prefix>,
labels: &'a [(Cow<'static, str>, Cow<'static, str>)],
#[allow(clippy::type_complexity)]
collector: Option<
Box<dyn Iterator<Item = (Cow<'a, Descriptor>, MaybeOwned<'a, Box<dyn LocalMetric>>)> + 'a>,
>,
collectors: std::slice::Iter<'a, Box<dyn Collector>>,
sub_collector_iter: Option<Box<CollectorIterator<'a>>>,
sub_registries: std::slice::Iter<'a, Registry>,
}
impl<'a> std::fmt::Debug for CollectorIterator<'a> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("CollectorIterator")
.field("prefix", &self.prefix)
.field("labels", &self.labels)
.finish()
}
}
impl<'a> Iterator for CollectorIterator<'a> {
type Item = (Cow<'a, Descriptor>, MaybeOwned<'a, Box<dyn LocalMetric>>);
fn next(&mut self) -> Option<Self::Item> {
loop {
if let Some(m) = self
.collector
.as_mut()
.and_then(|c| c.next())
.or_else(|| self.sub_collector_iter.as_mut().and_then(|i| i.next()))
.map(|(descriptor, metric)| {
if self.prefix.is_some() || !self.labels.is_empty() {
let Descriptor {
name,
help,
unit,
labels,
} = descriptor.as_ref();
let mut labels = labels.to_vec();
labels.extend_from_slice(self.labels);
let enriched_descriptor =
Descriptor::new(name, help, unit.to_owned(), self.prefix, labels);
Some((Cow::Owned(enriched_descriptor), metric))
} else {
Some((descriptor, metric))
}
})
{
return m;
}
if let Some(collector) = self.collectors.next() {
self.collector = Some(collector.collect());
continue;
}
if let Some(collector_iter) = self
.sub_registries
.next()
.map(|r| Box::new(r.iter_collectors()))
{
self.sub_collector_iter = Some(collector_iter);
continue;
}
return None;
}
}
}
#[derive(Clone, Debug)]
pub struct Prefix(String);
impl Prefix {
fn as_str(&self) -> &str {
self.0.as_str()
}
}
impl From<String> for Prefix {
fn from(s: String) -> Self {
Prefix(s)
}
}
#[derive(Debug, Clone)]
pub struct Descriptor {
name: String,
help: String,
unit: Option<Unit>,
labels: Vec<(Cow<'static, str>, Cow<'static, str>)>,
}
impl Descriptor {
pub fn new<N: Into<String>, H: Into<String>>(
name: N,
help: H,
unit: Option<Unit>,
prefix: Option<&Prefix>,
labels: Vec<(Cow<'static, str>, Cow<'static, str>)>,
) -> Self {
let mut name = name.into();
if let Some(prefix) = prefix {
name.insert(0, '_');
name.insert_str(0, prefix.as_str());
}
let help = help.into() + ".";
Descriptor {
name,
help,
unit,
labels,
}
}
pub fn name(&self) -> &str {
&self.name
}
pub fn help(&self) -> &str {
&self.help
}
pub fn unit(&self) -> &Option<Unit> {
&self.unit
}
pub fn labels(&self) -> &[(Cow<'static, str>, Cow<'static, str>)] {
&self.labels
}
}
#[derive(Debug, Clone)]
#[allow(missing_docs)]
pub enum Unit {
Amperes,
Bytes,
Celsius,
Grams,
Joules,
Meters,
Ratios,
Seconds,
Volts,
Other(String),
}
impl Unit {
pub fn as_str(&self) -> &str {
match self {
Unit::Amperes => "amperes",
Unit::Bytes => "bytes",
Unit::Celsius => "celsius",
Unit::Grams => "grams",
Unit::Joules => "joules",
Unit::Meters => "meters",
Unit::Ratios => "ratios",
Unit::Seconds => "seconds",
Unit::Volts => "volts",
Unit::Other(other) => other.as_str(),
}
}
}
pub trait Metric: crate::encoding::EncodeMetric + Send + Sync + std::fmt::Debug + 'static {}
impl<T> Metric for T where T: crate::encoding::EncodeMetric + Send + Sync + std::fmt::Debug + 'static
{}
pub trait LocalMetric: crate::encoding::EncodeMetric + std::fmt::Debug {}
impl<T> LocalMetric for T where T: crate::encoding::EncodeMetric + std::fmt::Debug {}
#[cfg(test)]
mod tests {
use super::*;
use crate::metrics::counter::Counter;
#[test]
fn register_and_iterate() {
let mut registry = Registry::default();
let counter: Counter = Counter::default();
registry.register("my_counter", "My counter", counter);
assert_eq!(1, registry.iter_metrics().count())
}
#[test]
fn sub_registry_with_prefix_and_label() {
let top_level_metric_name = "my_top_level_metric";
let mut registry = Registry::default();
let counter: Counter = Counter::default();
registry.register(top_level_metric_name, "some help", counter.clone());
let prefix_1 = "prefix_1";
let prefix_1_metric_name = "my_prefix_1_metric";
let sub_registry = registry.sub_registry_with_prefix(prefix_1);
sub_registry.register(prefix_1_metric_name, "some help", counter.clone());
let prefix_1_1 = "prefix_1_1";
let prefix_1_1_metric_name = "my_prefix_1_1_metric";
let sub_sub_registry = sub_registry.sub_registry_with_prefix(prefix_1_1);
sub_sub_registry.register(prefix_1_1_metric_name, "some help", counter.clone());
let label_1_2 = (Cow::Borrowed("registry"), Cow::Borrowed("1_2"));
let prefix_1_2_metric_name = "my_prefix_1_2_metric";
let sub_sub_registry = sub_registry.sub_registry_with_label(label_1_2.clone());
sub_sub_registry.register(prefix_1_2_metric_name, "some help", counter.clone());
let prefix_1_2_1 = "prefix_1_2_1";
let prefix_1_2_1_metric_name = "my_prefix_1_2_1_metric";
let sub_sub_sub_registry = sub_sub_registry.sub_registry_with_prefix(prefix_1_2_1);
sub_sub_sub_registry.register(prefix_1_2_1_metric_name, "some help", counter.clone());
let prefix_2 = "prefix_2";
let _ = registry.sub_registry_with_prefix(prefix_2);
let prefix_3 = "prefix_3";
let prefix_3_metric_name = "my_prefix_3_metric";
let sub_registry = registry.sub_registry_with_prefix(prefix_3);
sub_registry.register(prefix_3_metric_name, "some help", counter);
let mut metric_iter = registry
.iter_metrics()
.map(|(desc, _)| (desc.name.clone(), desc.labels.clone()));
assert_eq!(
Some((top_level_metric_name.to_string(), vec![])),
metric_iter.next()
);
assert_eq!(
Some((prefix_1.to_string() + "_" + prefix_1_metric_name, vec![])),
metric_iter.next()
);
assert_eq!(
Some((
prefix_1.to_string() + "_" + prefix_1_1 + "_" + prefix_1_1_metric_name,
vec![]
)),
metric_iter.next()
);
assert_eq!(
Some((
prefix_1.to_string() + "_" + prefix_1_2_metric_name,
vec![label_1_2.clone()]
)),
metric_iter.next()
);
assert_eq!(
Some((
prefix_1.to_string() + "_" + prefix_1_2_1 + "_" + prefix_1_2_1_metric_name,
vec![label_1_2]
)),
metric_iter.next()
);
assert_eq!(
Some((prefix_3.to_string() + "_" + prefix_3_metric_name, vec![])),
metric_iter.next()
);
}
}