-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathclient_report.rs
108 lines (98 loc) · 3.33 KB
/
client_report.rs
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
use relay_common::{DataCategory, UnixTimestamp};
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct DiscardedEvent {
pub reason: String,
pub category: DataCategory,
pub quantity: u32,
}
#[derive(Clone, Debug, Default, PartialEq, Serialize, Deserialize)]
pub struct ClientReport {
/// The timestamp of when the report was created.
pub timestamp: Option<UnixTimestamp>,
/// Counters for events discarded by the client.
pub discarded_events: Vec<DiscardedEvent>,
/// Counters for events rate limited by a relay configured to emit outcomes as client reports
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub _server_rate_limited_events: Vec<DiscardedEvent>,
/// Counters for events filtered by a relay configured to emit outcomes as client reports
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub _server_filtered_events: Vec<DiscardedEvent>,
/// Counters for events filtered by a sampling rule,
/// by a relay configured to emit outcomes as client reports
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub _server_filtered_sampling_events: Vec<DiscardedEvent>,
}
impl ClientReport {
/// Parses a client report update from JSON.
pub fn parse(payload: &[u8]) -> Result<Self, serde_json::Error> {
serde_json::from_slice(payload)
}
/// Serializes a client report update back into JSON.
pub fn serialize(&self) -> Result<Vec<u8>, serde_json::Error> {
serde_json::to_vec(self)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_client_report_roundtrip() {
let json = r#"{
"timestamp": "2020-02-07T15:17:00Z",
"discarded_events": [
{"reason": "foo_reason", "category": "error", "quantity": 42},
{"reason": "foo_reason", "category": "transaction", "quantity": 23}
],
"_server_rate_limited_events" : [
{"reason": "bar_reason", "category": "session", "quantity": 456}
]
}"#;
let output = r#"{
"timestamp": 1581088620,
"discarded_events": [
{
"reason": "foo_reason",
"category": "error",
"quantity": 42
},
{
"reason": "foo_reason",
"category": "transaction",
"quantity": 23
}
],
"_server_rate_limited_events": [
{
"reason": "bar_reason",
"category": "session",
"quantity": 456
}
]
}"#;
let update = ClientReport {
timestamp: Some("2020-02-07T15:17:00Z".parse().unwrap()),
discarded_events: vec![
DiscardedEvent {
reason: "foo_reason".into(),
category: DataCategory::Error,
quantity: 42,
},
DiscardedEvent {
reason: "foo_reason".into(),
category: DataCategory::Transaction,
quantity: 23,
},
],
_server_rate_limited_events: vec![DiscardedEvent {
reason: "bar_reason".into(),
category: DataCategory::Session,
quantity: 456,
}],
..Default::default()
};
let parsed = ClientReport::parse(json.as_bytes()).unwrap();
assert_eq_dbg!(update, parsed);
assert_eq_str!(output, serde_json::to_string_pretty(&update).unwrap());
}
}