forked from open-telemetry/opentelemetry-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecord.rs
169 lines (144 loc) · 4.89 KB
/
record.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
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
use opentelemetry::{
logs::{AnyValue, Severity},
trace::{SpanContext, SpanId, TraceFlags, TraceId},
Key,
};
use std::{borrow::Cow, time::SystemTime};
#[derive(Debug, Default, Clone)]
#[non_exhaustive]
/// LogRecord represents all data carried by a log record, and
/// is provided to `LogExporter`s as input.
pub struct LogRecord {
/// Event name. Optional as not all the logging API support it.
pub event_name: Option<Cow<'static, str>>,
/// Record timestamp
pub timestamp: Option<SystemTime>,
/// Timestamp for when the record was observed by OpenTelemetry
pub observed_timestamp: Option<SystemTime>,
/// Trace context for logs associated with spans
pub trace_context: Option<TraceContext>,
/// The original severity string from the source
pub severity_text: Option<Cow<'static, str>>,
/// The corresponding severity value, normalized
pub severity_number: Option<Severity>,
/// Record body
pub body: Option<AnyValue>,
/// Additional attributes associated with this record
pub attributes: Option<Vec<(Key, AnyValue)>>,
}
impl opentelemetry::logs::LogRecord for LogRecord {
fn set_event_name<T>(&mut self, name: T)
where
T: Into<Cow<'static, str>>,
{
self.event_name = Some(name.into());
}
fn set_timestamp(&mut self, timestamp: SystemTime) {
self.timestamp = Some(timestamp);
}
fn set_observed_timestamp(&mut self, timestamp: SystemTime) {
self.observed_timestamp = Some(timestamp);
}
fn set_severity_text(&mut self, severity_text: Cow<'static, str>) {
self.severity_text = Some(severity_text);
}
fn set_severity_number(&mut self, severity_number: Severity) {
self.severity_number = Some(severity_number);
}
fn set_body(&mut self, body: AnyValue) {
self.body = Some(body);
}
fn add_attributes(&mut self, attributes: Vec<(Key, AnyValue)>) {
self.attributes = Some(attributes);
}
fn add_attribute<K, V>(&mut self, key: K, value: V)
where
K: Into<Key>,
V: Into<AnyValue>,
{
if let Some(ref mut attrs) = self.attributes {
attrs.push((key.into(), value.into()));
} else {
self.attributes = Some(vec![(key.into(), value.into())]);
}
}
}
/// TraceContext stores the trace context for logs that have an associated
/// span.
#[derive(Debug, Clone)]
#[non_exhaustive]
pub struct TraceContext {
/// Trace id
pub trace_id: TraceId,
/// Span Id
pub span_id: SpanId,
/// Trace flags
pub trace_flags: Option<TraceFlags>,
}
impl From<&SpanContext> for TraceContext {
fn from(span_context: &SpanContext) -> Self {
TraceContext {
trace_id: span_context.trace_id(),
span_id: span_context.span_id(),
trace_flags: Some(span_context.trace_flags()),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use opentelemetry::logs::{AnyValue, LogRecord as _, Severity};
use std::borrow::Cow;
use std::time::SystemTime;
#[test]
fn test_set_timestamp() {
let mut log_record = LogRecord::default();
let now = SystemTime::now();
log_record.set_timestamp(now);
assert_eq!(log_record.timestamp, Some(now));
}
#[test]
fn test_set_observed_timestamp() {
let mut log_record = LogRecord::default();
let now = SystemTime::now();
log_record.set_observed_timestamp(now);
assert_eq!(log_record.observed_timestamp, Some(now));
}
#[test]
fn test_set_severity_text() {
let mut log_record = LogRecord::default();
let severity_text: Cow<'static, str> = "ERROR".into(); // Explicitly typed
log_record.set_severity_text(severity_text);
assert_eq!(log_record.severity_text, Some(Cow::Borrowed("ERROR")));
}
#[test]
fn test_set_severity_number() {
let mut log_record = LogRecord::default();
let severity_number = Severity::Error;
log_record.set_severity_number(severity_number);
assert_eq!(log_record.severity_number, Some(Severity::Error));
}
#[test]
fn test_set_body() {
let mut log_record = LogRecord::default();
let body = AnyValue::String("Test body".into());
log_record.set_body(body.clone());
assert_eq!(log_record.body, Some(body));
}
#[test]
fn test_set_attributes() {
let mut log_record = LogRecord::default();
let attributes = vec![(Key::new("key"), AnyValue::String("value".into()))];
log_record.add_attributes(attributes.clone());
assert_eq!(log_record.attributes, Some(attributes));
}
#[test]
fn test_set_attribute() {
let mut log_record = LogRecord::default();
log_record.add_attribute("key", "value");
assert_eq!(
log_record.attributes,
Some(vec![(Key::new("key"), AnyValue::String("value".into()))])
);
}
}