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
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
use metric::{cmp_tagmap, TagIter, TagMap};
use quantiles::ckms::CKMS;
use quantiles::histogram::{Histogram, Iter};
#[cfg(test)]
use quantiles::histogram::Bound;
use std::{cmp, mem};
use std::collections::{hash_map, HashSet};
use std::hash::{Hash, Hasher};
use std::ops::{Add, AddAssign};
use time;
/// The available aggregations for `Telemetry`.
///
/// This enumeration signals the way in which `Telemetry` values will be
/// aggregated. The exact descriptions are detailed below.
#[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq, PartialOrd, Eq, Hash)]
pub enum AggregationMethod {
/// Cumulatively add `Telemetry` objects. That is, we store only the
/// summation of all like-points.
Sum,
/// Store only the last value of the `Telemetry` aggregation. The exact
/// ordering within a bin will depend on order of receipt by cernan.
Set,
/// Produce a quantile query structure over the `Telemetry` stream. The
/// method is `quantiles::CKMS`, a summarization that is cheap in write and
/// read time and has guaranteed error bounds on queries.
Summarize,
/// Produce a binned histogram over the `Telemetry` stream. The method used
/// is that of `quantiles::Histogram`, unequal bins with a preference for
/// write over read speed.
Histogram,
}
/// DO NOT USE - PUBLIC FOR TESTING ONLY
#[derive(PartialEq, Debug, Serialize, Deserialize, Clone)]
pub enum Value {
/// DO NOT USE - PUBLIC FOR TESTING ONLY
Set(f64),
/// DO NOT USE - PUBLIC FOR TESTING ONLY
Sum(f64),
/// DO NOT USE - PUBLIC FOR TESTING ONLY
Histogram(Histogram<f64>),
/// DO NOT USE - PUBLIC FOR TESTING ONLY
Quantiles { ckms: CKMS<f64>, sum: f64 },
}
pub struct SoftTelemetry {
name: Option<String>,
initial_value: Option<f64>,
thawed_value: Option<Value>,
kind: Option<AggregationMethod>,
error: Option<f64>, // only needed for Summarize
bounds: Option<Vec<f64>>, // only needed for Histogram
timestamp: Option<i64>,
tags: Option<TagMap>,
persist: Option<bool>,
override_count: Option<u64>,
override_sample_sum: Option<f64>,
}
/// A Telemetry is a name, tagmap, timestamp and aggregated, point-in-time
/// value, as outlined in the cernan native protocol.
#[derive(PartialEq, Serialize, Deserialize, Debug, Clone)]
pub struct Telemetry {
/// The name of the Telemetry. This is user-provided and will vary by input
/// protocol.
pub name: String,
value: Option<Value>,
/// Determine whether the Telemetry will persist across time bins.
pub persist: bool,
/// The Telemetry specific metadata tags.
tags: Option<TagMap>,
/// The time of Telemetry, measured in seconds.
pub timestamp: i64,
override_count: Option<u64>,
override_sample_sum: Option<f64>,
}
impl Add for Value {
type Output = Value;
/// Add two Telemetry
///
/// The exact result here depends on the aggregation set inside each
/// Telemetry. The left hand side aggregation will be set to the right hand
/// side aggregation, with appropriate conversion between. For instance,
/// addition of a SET and an SUM will result in a sum with the value of the
/// SET added to the SUM. Note that some additions WILL LOSE DATA.
///
/// It is expected in practice that conversion between aggregation kinds
/// will be rare.
fn add(self, rhs: Value) -> Value {
match self {
Value::Set(x) | Value::Sum(x) => match rhs {
Value::Set(y) => Value::Set(y),
Value::Sum(y) => Value::Sum(x + y),
Value::Histogram(mut y) => {
y.insert(x);
Value::Histogram(y)
}
Value::Quantiles { mut ckms, mut sum } => {
ckms.insert(x);
sum += x;
Value::Quantiles { ckms, sum }
}
},
Value::Histogram(mut x) => match rhs {
Value::Set(y) => Value::Set(y),
Value::Sum(y) => Value::Sum(x.sum().unwrap_or(0.0) + y),
Value::Histogram(y) => {
x += y;
Value::Histogram(x)
}
Value::Quantiles { ckms, sum } => Value::Quantiles { ckms, sum },
},
Value::Quantiles { mut ckms, mut sum } => match rhs {
Value::Set(y) => Value::Set(y),
Value::Sum(y) => Value::Sum(sum + y),
Value::Histogram(mut y) => {
for v in ckms.into_vec() {
y.insert(v);
}
Value::Histogram(y)
}
Value::Quantiles {
ckms: rhs,
sum: rhs_sum,
} => {
ckms += rhs;
sum += rhs_sum;
Value::Quantiles { ckms, sum }
}
},
}
}
}
impl Value {
#[cfg(test)]
pub fn is_same_kind(&self, rhs: &Value) -> bool {
match (self, rhs) {
(&Value::Set(_), &Value::Set(_)) => true,
(&Value::Sum(_), &Value::Sum(_)) => true,
(&Value::Histogram(_), &Value::Histogram(_)) => true,
(&Value::Quantiles { .. }, &Value::Quantiles { .. }) => true,
_ => false,
}
}
pub fn sum(&self) -> Option<f64> {
match *self {
Value::Sum(x) => Some(x),
_ => None,
}
}
pub fn set(&self) -> Option<f64> {
match *self {
Value::Set(x) => Some(x),
_ => None,
}
}
pub fn query(&self, prcnt: f64) -> Option<f64> {
match *self {
Value::Quantiles { ref ckms, .. } => ckms.query(prcnt).map(|x| x.1),
_ => None,
}
}
pub fn bins(&self) -> Option<Iter<f64>> {
match *self {
Value::Histogram(ref histo) => Some(histo.iter()),
_ => None,
}
}
pub fn count(&self) -> usize {
match *self {
Value::Set(_) | Value::Sum(_) => 1,
Value::Histogram(ref histo) => histo.count(),
Value::Quantiles { ref ckms, .. } => ckms.count(),
}
}
pub fn mean(&self) -> f64 {
match *self {
Value::Set(_) | Value::Sum(_) => 1.0,
Value::Histogram(ref histo) => if let Some(sum) = histo.sum() {
let count = histo.count();
assert!(count > 0);
sum / (count as f64)
} else {
0.0
},
Value::Quantiles { ref ckms, .. } => ckms.cma().unwrap_or(0.0),
}
}
pub fn kind(&self) -> AggregationMethod {
match *self {
Value::Set(_) => AggregationMethod::Set,
Value::Sum(_) => AggregationMethod::Sum,
Value::Histogram(_) => AggregationMethod::Histogram,
Value::Quantiles { .. } => AggregationMethod::Summarize,
}
}
#[cfg(test)]
pub fn into_vec(self) -> Option<Vec<(Bound<f64>, usize)>> {
match self {
Value::Histogram(h) => Some(h.into_vec()),
_ => None,
}
}
}
impl AddAssign for Telemetry {
fn add_assign(&mut self, rhs: Telemetry) {
let value = mem::replace(&mut self.value, Default::default());
self.value = Some(value.unwrap().add(rhs.value.unwrap()));
// When we add two telemetries together what we gotta do is make sure
// that if one side or the other is persisted then the resulting
// Telemetry is persisted.
self.persist = rhs.persist;
}
}
impl PartialOrd for Telemetry {
fn partial_cmp(&self, other: &Telemetry) -> Option<cmp::Ordering> {
match self.name.partial_cmp(&other.name) {
Some(cmp::Ordering::Equal) => {
match self.timestamp.partial_cmp(&other.timestamp) {
Some(cmp::Ordering::Equal) => cmp_tagmap(&self.tags, &other.tags),
other => other,
}
}
other => other,
}
}
}
impl Default for Telemetry {
fn default() -> Telemetry {
Telemetry {
name: String::from(""),
value: Some(Value::Set(0.0)),
persist: false,
tags: None,
timestamp: time::now(),
override_sample_sum: None,
override_count: None,
}
}
}
impl SoftTelemetry {
/// Set the override sample sum
pub fn sample_sum(mut self, sum: f64) -> SoftTelemetry {
self.override_sample_sum = Some(sum);
self
}
/// Set the override count
pub fn count(mut self, count: u64) -> SoftTelemetry {
self.override_count = Some(count);
self
}
/// Set the name of the Telemetry
///
/// The likelyhood is that there will be many Telemetry with the same
/// name. We might do fancy tricks with this in mind but, then again, we
/// might not.
pub fn name<S>(mut self, name: S) -> SoftTelemetry
where
S: Into<String>,
{
self.name = Some(name.into());
self
}
/// Set the initial value of Telemetry
///
/// This value primes the pump of the Telemetry. There'll be more come in
/// but we've got to know where to start.
pub fn value(mut self, val: f64) -> SoftTelemetry {
self.thawed_value = None;
self.initial_value = Some(val);
self
}
/// Set the kind of Telemetry aggregation
///
/// Telemetry provide different views into the stored data. The kind
/// controls, well, what kind of view is going to be used.
pub fn kind(mut self, aggr: AggregationMethod) -> SoftTelemetry {
self.kind = Some(aggr);
self
}
/// Set the error for quantile calculation
///
/// This is only necessary if the kind has been set to
/// AggregationMethod::Summarize. It is an error to set this if the
/// aggregation method is not as previously specified.
pub fn error(mut self, error: f64) -> SoftTelemetry {
self.error = Some(error);
self
}
/// Clear quantile error bounds
///
/// When switching between types during the construction of a Telemetry it's
/// possible the error bound will have been previously set. This is a
/// problem when the SoftTelemetry is hardened. This method clears that
/// previous error bound.
pub fn clear_error(mut self) -> SoftTelemetry {
self.error = None;
self
}
/// Set the bounds for histogram calculation
///
/// This is only necessary if the kind has been set to
/// AggregationMethod::Histogram. It is an error to set this if the
/// aggregation method is not as previously specified.
pub fn bounds(mut self, mut bounds: Vec<f64>) -> SoftTelemetry {
bounds.sort_by(|a, b| a.partial_cmp(b).unwrap());
self.bounds = Some(bounds);
self
}
/// Set the timestamp of the Telemetry
///
/// This is the instant of time in seconds that the Telemetry is considered
/// to have happened.
pub fn timestamp(mut self, ts: i64) -> SoftTelemetry {
self.timestamp = Some(ts);
self
}
/// Set the tags of the Telemetry
///
/// These are the tags associated with the Telemetry and help us determine
/// origin of report etc, depending on what the user has configured.
pub fn tags(mut self, tags: TagMap) -> SoftTelemetry {
self.tags = Some(tags);
self
}
/// Set the persist of the Telemetry
///
/// This flag determines if the Telemetry persists across time bins. This is
/// a flag for aggregation implementation and may be ignored. If this is not
/// specified the Telemetry is considered to not persist.
pub fn persist(mut self, persist: bool) -> SoftTelemetry {
self.persist = Some(persist);
self
}
pub fn harden(self) -> Result<Telemetry, Error> {
if self.initial_value.is_some() && self.thawed_value.is_some() {
return Err(Error::CannotHaveTwoValues);
}
if self.initial_value.is_none() && self.thawed_value.is_none() {
return Err(Error::NoValue);
}
let name = if let Some(name) = self.name {
name
} else {
return Err(Error::NoName);
};
let kind = if let Some(kind) = self.kind {
kind
} else {
AggregationMethod::Set
};
let timestamp = if let Some(timestamp) = self.timestamp {
timestamp
} else {
time::now()
};
let persist = if let Some(persist) = self.persist {
persist
} else {
false
};
match kind {
AggregationMethod::Summarize => {
if self.bounds.is_some() {
return Err(Error::CannotSetBounds);
}
let error = if let Some(error) = self.error {
if error >= 1.0 {
return Err(Error::SummarizeErrorTooLarge);
}
error
} else {
0.001
};
let value = match (self.initial_value, self.thawed_value) {
(Some(iv), None) => {
let mut ckms = CKMS::new(error);
ckms.insert(iv);
Value::Quantiles { ckms, sum: iv }
}
(None, Some(tv)) => tv,
_ => unreachable!(),
};
Ok(Telemetry {
name: name,
value: Some(value),
persist: persist,
tags: self.tags,
timestamp: timestamp,
override_count: self.override_count,
override_sample_sum: self.override_sample_sum,
})
}
AggregationMethod::Histogram => {
if self.error.is_some() {
return Err(Error::CannotSetError);
}
let value = match (self.initial_value, self.thawed_value) {
(Some(iv), None) => {
let bounds = if let Some(bounds) = self.bounds {
bounds
} else {
vec![1.0, 10.0, 100.0, 1000.0]
};
let mut histo = Histogram::new(bounds).unwrap();
histo.insert(iv);
Value::Histogram(histo)
}
(None, Some(tv)) => tv,
_ => unreachable!(),
};
Ok(Telemetry {
name: name,
value: Some(value),
persist: persist,
tags: self.tags,
timestamp: timestamp,
override_sample_sum: None,
override_count: None,
})
}
AggregationMethod::Set => {
if self.error.is_some() {
return Err(Error::CannotSetError);
}
if self.bounds.is_some() {
return Err(Error::CannotSetBounds);
}
let value = match (self.initial_value, self.thawed_value) {
(Some(iv), None) => Value::Set(iv),
(None, Some(tv)) => tv,
_ => unreachable!(),
};
Ok(Telemetry {
name: name,
value: Some(value),
persist: persist,
tags: self.tags,
timestamp: timestamp,
override_sample_sum: None,
override_count: None,
})
}
AggregationMethod::Sum => {
if self.error.is_some() {
return Err(Error::CannotSetError);
}
if self.bounds.is_some() {
return Err(Error::CannotSetBounds);
}
let value = match (self.initial_value, self.thawed_value) {
(Some(iv), None) => Value::Sum(iv),
(None, Some(tv)) => tv,
_ => unreachable!(),
};
Ok(Telemetry {
name: name,
value: Some(value),
persist: persist,
tags: self.tags,
timestamp: timestamp,
override_sample_sum: None,
override_count: None,
})
}
}
}
}
#[derive(Debug)]
pub enum Error {
CannotHaveTwoValues,
CannotSetBounds,
CannotSetError,
NoInitialValue,
NoName,
NoValue,
SummarizeErrorTooLarge,
}
impl Telemetry {
/// Make a builder for metrics
///
/// This function returns a TelemetryBuidler with a name set. A metric must
/// have _at least_ a name and a value but values may be delayed behind
/// names.
///
/// # Examples
///
/// ```
/// use cernan::metric::{AggregationMethod, Telemetry};
///
/// let m = Telemetry::new().name("foo").value(1.1).harden().unwrap();
///
/// assert_eq!(m.kind(), AggregationMethod::Set);
/// assert_eq!(m.name, "foo");
/// assert_eq!(m.set(), Some(1.1));
/// ```
pub fn new() -> SoftTelemetry {
SoftTelemetry {
name: None,
initial_value: None,
thawed_value: None,
kind: None,
error: None,
bounds: None,
timestamp: None,
tags: None,
persist: None,
override_sample_sum: None,
override_count: None,
}
}
/// Unfreeze a Telemetry into a SoftTelemetry
///
/// Telemetry is a central type to cernan. There's a great deal of
/// validation that needs to happen whenever we change one of these things
/// and, well, there's a lot of changing going on. For the most part
/// Telemetry is a read-only type and it must be 'unfrozen' to be changed.
pub fn thaw(self) -> SoftTelemetry {
let kind = self.kind();
SoftTelemetry {
name: Some(self.name),
initial_value: None,
thawed_value: Some(self.value.unwrap()),
kind: Some(kind),
error: None,
bounds: None,
timestamp: Some(self.timestamp),
tags: self.tags,
persist: Some(self.persist),
override_count: None,
override_sample_sum: None,
}
}
/// Return the kind of the Telemetry
///
/// This method is useful for determing the available operations over
/// Telemetry, creating partitions of streams or for any other instance
/// where you need to know what kind of aggregation is happening.
pub fn kind(&self) -> AggregationMethod {
if let Some(ref v) = self.value {
v.kind()
} else {
unreachable!()
}
}
/// Iterate tags, layering in defaults when needed
///
/// The defaults serves to fill 'holes' in the Telemetry's view of the
/// tags. We avoid shipping tags through the whole system at the expense of
/// slightly more complicated call-sites in sinks.
pub fn tags<'a>(&'a self, defaults: &'a TagMap) -> TagIter<'a> {
if let Some(ref tags) = self.tags {
TagIter::Double {
iters_exhausted: false,
seen_keys: HashSet::new(),
defaults: defaults.iter(),
iters: tags.iter(),
}
} else {
TagIter::Single {
defaults: defaults.iter(),
}
}
}
/// Get a value from tags, either interior or default
pub fn get_from_tags<'a>(
&'a mut self,
key: &'a str,
defaults: &'a TagMap,
) -> Option<&'a String> {
if let Some(ref mut tags) = self.tags {
match tags.get(key) {
Some(v) => Some(v),
None => defaults.get(key),
}
} else {
defaults.get(key)
}
}
/// Insert a tag into the Telemetry
///
/// This inserts a key/value pair into the Telemetry, returning the previous
/// value if the key already existed.
pub fn insert_tag<S>(&mut self, key: S, val: S) -> Option<String>
where
S: Into<String>,
{
if let Some(ref mut tags) = self.tags {
tags.insert(key.into(), val.into())
} else {
let mut tags = TagMap::default();
let res = tags.insert(key.into(), val.into());
self.tags = Some(tags);
res
}
}
/// Remove a tag from the Telemetry
///
/// This removes a key/value pair from the Telemetry, returning the previous
/// value if the key existed.
pub fn remove_tag(&mut self, key: &str) -> Option<String> {
if let Some(ref mut tags) = self.tags {
tags.remove(key)
} else {
None
}
}
/// Overlay a specific key / value pair in self's tags
///
/// This insert a key / value pair into the metric's tag map. If the key was
/// already present in the tag map the value will be replaced, else it will
/// be inserted.
pub fn overlay_tag<S>(mut self, key: S, val: S) -> Telemetry
where
S: Into<String>,
{
let _ = self.insert_tag(key, val);
self
}
/// Overlay self's tags with a TagMap
///
/// This inserts a map of key / value pairs over the top of metric's
/// existing tag map. Any new keys will be inserted while existing keys will
/// be overwritten.
pub fn overlay_tags_from_map(mut self, map: &TagMap) -> Telemetry {
if let Some(ref mut tags) = self.tags {
for (k, v) in map.iter() {
tags.insert(k.clone(), v.clone());
}
} else if !map.is_empty() {
self.tags = Some(map.clone());
}
self
}
/// Insert a value into the Telemetry
///
/// The inserted value will be subject to the Telemetry's aggregation
/// method.
pub fn insert(mut self, value: f64) -> Telemetry {
assert!(self.override_sample_sum.is_none());
assert!(self.override_count.is_none());
match self.value {
Some(Value::Set(_)) => {
self.value = Some(Value::Set(value));
}
Some(Value::Sum(x)) => {
self.value = Some(Value::Sum(x + value));
}
Some(Value::Histogram(ref mut histo)) => {
histo.insert(value);
}
Some(Value::Quantiles {
ref mut ckms,
ref mut sum,
}) => {
ckms.insert(value);
*sum += value;
}
None => unreachable!(),
}
self
}
/// Return the sum value of a SUM, None otherwise
pub fn sum(&self) -> Option<f64> {
if let Some(ref v) = self.value {
v.sum()
} else {
None
}
}
/// Return the set value of a SET, None otherwise
pub fn set(&self) -> Option<f64> {
if let Some(ref v) = self.value {
v.set()
} else {
None
}
}
/// Query a CKMS for a percentile, return None if not SUMMARIZE
pub fn query(&self, prcnt: f64) -> Option<f64> {
if let Some(ref v) = self.value {
v.query(prcnt)
} else {
None
}
}
/// Retrieve the bins of a BIN, None if not BIN
pub fn bins(&self) -> Option<Iter<f64>> {
if let Some(ref v) = self.value {
v.bins()
} else {
None
}
}
/// Sum of all samples inserted into this Telemetry
pub fn samples_sum(&self) -> Option<f64> {
match self.value {
Some(Value::Set(_)) | Some(Value::Sum(_)) | None => None,
Some(Value::Histogram(ref histo)) => histo.sum(),
Some(Value::Quantiles { sum, .. }) => {
if self.override_sample_sum.is_some() {
self.override_sample_sum
} else {
Some(sum)
}
}
}
}
/// Return the total count of Telemetry aggregated into this Telemetry.
pub fn count(&self) -> usize {
if let Some(cnt) = self.override_count {
cnt as usize
} else if let Some(ref v) = self.value {
v.count()
} else {
0
}
}
/// Return the mean value of all Telemetry aggregated in this Telemetry.
pub fn mean(&self) -> f64 {
if let Some(ref v) = self.value {
v.mean()
} else {
0.0
}
}
// TODO this function should be removed entirely in favor of the known-type
// functions: set, sum, etc etc
#[cfg(test)]
pub fn value(&self) -> Option<f64> {
match self.value {
Some(Value::Set(x)) => Some(x),
Some(Value::Sum(x)) => Some(x),
Some(Value::Quantiles { ref ckms, .. }) => ckms.query(1.0).map(|x| x.1),
Some(Value::Histogram(ref histo)) => histo.sum(),
None => unreachable!(),
}
}
/// Return a vector of stored Telemetry values
///
/// This method is subject to data loss. Consider aggregating into a
/// SET. The Telemetry is allowed to retain only one value -- the last --
/// and calling samples in that case will return only the last value
/// aggregated into the Telemetry.
pub fn samples(&self) -> Vec<f64> {
match self.value {
Some(Value::Set(x)) | Some(Value::Sum(x)) => vec![x],
Some(Value::Quantiles { ref ckms, .. }) => ckms.clone().into_vec(),
Some(Value::Histogram(ref histo)) => histo
.clone()
.into_vec()
.iter()
.map(|x| x.1 as f64)
.collect(),
None => unreachable!(),
}
}
/// Determine if two Telemetry are within one 'span' of one another.
///
/// This method determines if 1. two telemetry are 'alike' by name, tags and
/// aggregation and 2. if their timestamps are within one span bound of one
/// another.
pub fn within(&self, span: i64, other: &Telemetry) -> cmp::Ordering {
match self.name.partial_cmp(&other.name) {
Some(cmp::Ordering::Equal) => match cmp_tagmap(&self.tags, &other.tags) {
Some(cmp::Ordering::Equal) => {
let lhs_bin = self.timestamp / span;
let rhs_bin = other.timestamp / span;
lhs_bin.cmp(&rhs_bin)
}
other => other.unwrap(),
},
other => other.unwrap(),
}
}
/// Determine if the Telemetry's contained aggregation is valued zero.
pub fn is_zeroed(&self) -> bool {
match self.value {
Some(Value::Set(x)) | Some(Value::Sum(x)) => x == 0.0,
Some(Value::Histogram(ref histo)) => histo.count() == 0,
Some(Value::Quantiles { ref ckms, .. }) => ckms.count() == 0,
None => unreachable!(),
}
}
/// Return a hash of the Telemetry
///
/// The hash of a telemetry is based on its 'alike' fields. That is, its
/// name, tags and aggregation kind.
pub fn hash(&self) -> u64 {
let mut hasher = hash_map::DefaultHasher::new();
self.name.hash(&mut hasher);
if let Some(ref tags) = self.tags {
for (k, v) in tags.iter() {
k.hash(&mut hasher);
v.hash(&mut hasher);
}
}
self.kind().hash(&mut hasher);
hasher.finish()
}
/// Return a hash only of name and tags
///
/// This method is very near to `Telemetry::hash` but that aggregation kind
/// is ignored. This is useful for producing a hash for storage in some
/// kinds of lookup maps, say `flush_boundary_filter` where only storage
/// takes place, not aggregation.
pub fn name_tag_hash(&self) -> u64 {
let mut hasher = hash_map::DefaultHasher::new();
self.name.hash(&mut hasher);
if let Some(ref tags) = self.tags {
for (k, v) in tags.iter() {
k.hash(&mut hasher);
v.hash(&mut hasher);
}
}
hasher.finish()
}
/// Returns true if aggregation method is SET
pub fn is_set(&self) -> bool {
self.kind() == AggregationMethod::Set
}
/// Returns true if aggregation method is BINS
pub fn is_histogram(&self) -> bool {
self.kind() == AggregationMethod::Histogram
}
/// Returns true if aggregation method is SUM
pub fn is_sum(&self) -> bool {
self.kind() == AggregationMethod::Sum
}
/// Returns true if aggregation method is SUMMARIZE
pub fn is_summarize(&self) -> bool {
self.kind() == AggregationMethod::Summarize
}
#[cfg(test)]
pub fn priv_value(&self) -> Value {
self.value.clone().unwrap()
}
/// Adjust Telemetry time
///
/// This sets the metric time to the specified value, taken to be UTC
/// seconds since the Unix Epoch. If this is not set the metric will default
/// to `cernan::time::now()`.
///
/// # Examples
///
/// ```
/// use cernan::metric::Telemetry;
///
/// let m = Telemetry::new()
/// .name("foo")
/// .value(1.1)
/// .harden()
/// .unwrap()
/// .timestamp(10101);
///
/// assert_eq!(10101, m.timestamp);
/// ```
pub fn timestamp(mut self, time: i64) -> Telemetry {
self.timestamp = time;
self
}
}
#[cfg(test)]
mod tests {
use super::*;
use metric::{AggregationMethod, Event, Telemetry};
use quickcheck::{Arbitrary, Gen, QuickCheck, TestResult};
use std::cmp;
#[test]
fn tag_iter_single() {
let mut default_tags = TagMap::default();
default_tags.insert("source".into(), "test-src".into());
let res = Telemetry::new()
.name("l6")
.value(0.7913855)
.error(0.01)
.kind(AggregationMethod::Histogram)
.clear_error()
.bounds(vec![0.01, 1.0, 2.0, 4.0])
.harden()
.unwrap();
let mut iter = res.tags(&default_tags);
assert_eq!(
Some(("source", "test-src")),
iter.next().map(|(k, v)| (k.as_str(), v.as_str()))
);
assert_eq!(None, iter.next());
}
#[test]
fn tag_iter_double() {
let mut default_tags = TagMap::default();
default_tags.insert("source".into(), "test-src".into());
let mut custom_tags = TagMap::default();
custom_tags.insert("filter".into(), "test-filter-mod".into());
let res = Telemetry::new()
.name("l6")
.value(0.7913855)
.error(0.01)
.kind(AggregationMethod::Histogram)
.clear_error()
.bounds(vec![0.01, 1.0, 2.0, 4.0])
.harden()
.unwrap()
.overlay_tags_from_map(&custom_tags);
let mut iter = res.tags(&default_tags);
assert_eq!(
Some(("filter", "test-filter-mod")),
iter.next().map(|(k, v)| (k.as_str(), v.as_str()))
);
assert_eq!(
Some(("source", "test-src")),
iter.next().map(|(k, v)| (k.as_str(), v.as_str()))
);
assert_eq!(None, iter.next());
}
#[test]
fn set_bounds_no_crash() {
let res = Telemetry::new()
.name("l6")
.value(0.7913855)
.error(0.01)
.kind(AggregationMethod::Histogram)
.clear_error()
.bounds(vec![0.01, 1.0, 2.0, 4.0])
.harden();
assert!(res.is_ok());
}
#[test]
fn partial_ord_equal() {
let mc = Telemetry::new()
.name("l6")
.value(0.7913855)
.kind(AggregationMethod::Sum)
.harden()
.unwrap()
.timestamp(47);
let mg = Telemetry::new()
.name("l6")
.value(0.9683)
.kind(AggregationMethod::Set)
.harden()
.unwrap()
.timestamp(47);
assert_eq!(Some(cmp::Ordering::Equal), mc.partial_cmp(&mg));
}
#[test]
fn partial_ord_distinct() {
let mc = Telemetry::new()
.name("l6")
.value(0.7913855)
.kind(AggregationMethod::Sum)
.harden()
.unwrap()
.timestamp(7);
let mg = Telemetry::new()
.name("l6")
.value(0.9683)
.kind(AggregationMethod::Set)
.harden()
.unwrap()
.timestamp(47);
assert_eq!(Some(cmp::Ordering::Less), mc.partial_cmp(&mg));
}
#[test]
fn partial_ord_gauges() {
let mdg = Telemetry::new()
.name("l6")
.value(0.7913855)
.kind(AggregationMethod::Set)
.persist(true)
.harden()
.unwrap()
.timestamp(47);
let mg = Telemetry::new()
.name("l6")
.value(0.9683)
.kind(AggregationMethod::Set)
.harden()
.unwrap()
.timestamp(47);
assert_eq!(Some(cmp::Ordering::Equal), mg.partial_cmp(&mdg));
assert_eq!(Some(cmp::Ordering::Equal), mdg.partial_cmp(&mg));
}
impl Arbitrary for AggregationMethod {
fn arbitrary<G>(g: &mut G) -> Self
where
G: Gen,
{
let i: usize = g.gen_range(0, 4);
match i {
0 => AggregationMethod::Sum,
1 => AggregationMethod::Set,
2 => AggregationMethod::Summarize,
_ => AggregationMethod::Histogram,
}
}
}
impl Arbitrary for Telemetry {
fn arbitrary<G>(g: &mut G) -> Self
where
G: Gen,
{
let name_len = g.gen_range(0, 64);
let name: String = g.gen_iter::<char>().take(name_len).collect();
let val: f64 = g.gen();
let kind: AggregationMethod = AggregationMethod::arbitrary(g);
let persist: bool = g.gen();
let time: i64 = g.gen_range(0, 100);
let mut mb = Telemetry::new().name(name).value(val).timestamp(time);
mb = match kind {
AggregationMethod::Set => mb.kind(AggregationMethod::Set),
AggregationMethod::Sum => mb.kind(AggregationMethod::Sum),
AggregationMethod::Summarize => mb.kind(AggregationMethod::Summarize),
AggregationMethod::Histogram => mb.kind(AggregationMethod::Histogram)
.bounds(vec![1.0, 10.0, 100.0, 1000.0]),
};
mb =
if persist { mb.persist(true) } else { mb };
mb.harden().unwrap()
}
}
impl Arbitrary for Event {
fn arbitrary<G>(g: &mut G) -> Self
where
G: Gen,
{
let i: usize = g.gen();
match i % 3 {
0 => Event::TimerFlush(g.gen()),
_ => Event::Telemetry(Arbitrary::arbitrary(g)),
}
}
}
#[test]
fn test_metric_within() {
fn inner(span: i64, lhs: Telemetry, rhs: Telemetry) -> TestResult {
if lhs.kind() != rhs.kind() {
return TestResult::discard();
} else if lhs.name != rhs.name {
return TestResult::discard();
} else if span < 1 {
return TestResult::discard();
}
let order = (lhs.timestamp / span).cmp(&(rhs.timestamp / span));
assert_eq!(order, lhs.within(span, &rhs));
TestResult::passed()
}
QuickCheck::new()
.tests(10000)
.max_tests(100000)
.quickcheck(inner as fn(i64, Telemetry, Telemetry) -> TestResult);
}
#[test]
fn test_metric_add_assign() {
fn inner(lhs: f64, rhs: f64, kind: AggregationMethod) -> TestResult {
let mut mlhs = Telemetry::new()
.name("foo")
.value(lhs)
.kind(kind)
.harden()
.unwrap();
let mrhs = Telemetry::new()
.name("foo")
.value(rhs)
.kind(kind)
.harden()
.unwrap();
let old_mlhs = mlhs.clone();
let old_mrhs = mrhs.clone();
mlhs += mrhs;
if let Some(val) = mlhs.value() {
let expected = match kind {
AggregationMethod::Set => rhs,
AggregationMethod::Sum => lhs + rhs,
AggregationMethod::Summarize => lhs.max(rhs),
AggregationMethod::Histogram => lhs + rhs,
};
// println!("VAL: {:?} | EXPECTED: {:?}", val, expected);
match val.partial_cmp(&expected) {
Some(cmp::Ordering::Equal) => return TestResult::passed(),
_ => {
println!(
"\n\nLHS: {:?}\nRHS: {:?}\nMLHS: {:?}\nMRHS: {:?}\nRES: {:?}\nEXPECTED: {:?}\nVAL: {:?}",
lhs,
rhs,
old_mlhs,
old_mrhs,
mlhs,
expected,
val
);
return TestResult::failed();
}
}
} else {
return TestResult::failed();
}
}
QuickCheck::new()
.tests(100)
.max_tests(1000)
.quickcheck(inner as fn(f64, f64, AggregationMethod) -> TestResult);
}
#[test]
fn test_negative_timer() {
let m = Telemetry::new()
.name("timer")
.value(-1.0)
.kind(AggregationMethod::Summarize)
.harden()
.unwrap();
assert_eq!(m.kind(), AggregationMethod::Summarize);
assert_eq!(m.query(1.0), Some(-1.0));
assert_eq!(m.name, "timer");
}
#[test]
fn test_postive_delta_gauge() {
let m = Telemetry::new()
.name("dgauge")
.value(1.0)
.persist(true)
.kind(AggregationMethod::Set)
.harden()
.unwrap();
assert_eq!(m.kind(), AggregationMethod::Set);
assert_eq!(m.value(), Some(1.0));
assert_eq!(m.name, "dgauge");
}
}