forked from open-telemetry/opentelemetry-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.rs
143 lines (127 loc) · 5.32 KB
/
mod.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
//! # OpenTelemetry Log SDK
mod config;
mod log_emitter;
mod log_processor;
mod record;
pub use config::{config, Config};
pub use log_emitter::{Builder, Logger, LoggerProvider};
pub use log_processor::{
BatchConfig, BatchConfigBuilder, BatchLogProcessor, BatchLogProcessorBuilder, LogProcessor,
SimpleLogProcessor,
};
pub use record::{LogRecord, TraceContext};
#[cfg(all(test, feature = "testing"))]
mod tests {
use super::*;
use crate::testing::logs::InMemoryLogsExporter;
use crate::Resource;
use opentelemetry::logs::LogRecord;
use opentelemetry::logs::{Logger, LoggerProvider as _, Severity};
use opentelemetry::{logs::AnyValue, Key, KeyValue};
use std::borrow::Borrow;
use std::collections::HashMap;
#[test]
fn logging_sdk_test() {
// Arrange
let resource = Resource::new(vec![
KeyValue::new("k1", "v1"),
KeyValue::new("k2", "v2"),
KeyValue::new("k3", "v3"),
KeyValue::new("k4", "v4"),
]);
let exporter: InMemoryLogsExporter = InMemoryLogsExporter::default();
let logger_provider = LoggerProvider::builder()
.with_config(Config::default().with_resource(resource.clone()))
.with_log_processor(SimpleLogProcessor::new(Box::new(exporter.clone())))
.build();
// Act
let logger = logger_provider.logger("test-logger");
let mut log_record = logger.create_log_record();
log_record.set_severity_number(Severity::Error);
log_record.set_severity_text("Error".into());
// Adding attributes using a vector with explicitly constructed Key and AnyValue objects.
log_record.add_attributes(vec![
(Key::new("key1"), AnyValue::from("value1")),
(Key::new("key2"), AnyValue::from("value2")),
]);
// Adding attributes using an array with explicitly constructed Key and AnyValue objects.
log_record.add_attributes([
(Key::new("key3"), AnyValue::from("value3")),
(Key::new("key4"), AnyValue::from("value4")),
]);
// Adding attributes using a vector with tuple auto-conversion to Key and AnyValue.
log_record.add_attributes(vec![("key5", "value5"), ("key6", "value6")]);
// Adding attributes using an array with tuple auto-conversion to Key and AnyValue.
log_record.add_attributes([("key7", "value7"), ("key8", "value8")]);
// Adding Attributes from a HashMap
let mut attributes_map = HashMap::new();
attributes_map.insert("key9", "value9");
attributes_map.insert("key10", "value10");
log_record.add_attributes(attributes_map);
logger.emit(log_record);
// Assert
let exported_logs = exporter
.get_emitted_logs()
.expect("Logs are expected to be exported.");
assert_eq!(exported_logs.len(), 1);
let log = exported_logs
.first()
.expect("Atleast one log is expected to be present.");
assert_eq!(log.instrumentation.name, "test-logger");
assert_eq!(log.record.severity_number, Some(Severity::Error));
let attributes: Vec<(Key, AnyValue)> = log
.record
.attributes
.clone()
.expect("Attributes are expected");
assert_eq!(attributes.len(), 10);
for i in 1..=10 {
assert!(log.record.attributes.clone().unwrap().contains(&(
Key::new(format!("key{}", i)),
AnyValue::String(format!("value{}", i).into())
)));
}
// validate Resource
assert_eq!(&resource, log.resource.borrow());
}
#[test]
fn logger_attributes() {
let provider = LoggerProvider::builder().build();
let logger = provider
.logger_builder("test_logger")
.with_schema_url("https://opentelemetry.io/schema/1.0.0")
.with_attributes(vec![(KeyValue::new("test_k", "test_v"))])
.build();
let instrumentation_library = logger.instrumentation_library();
let attributes = &instrumentation_library.attributes;
assert_eq!(instrumentation_library.name, "test_logger");
assert_eq!(
instrumentation_library.schema_url,
Some("https://opentelemetry.io/schema/1.0.0".into())
);
assert_eq!(attributes.len(), 1);
assert_eq!(attributes[0].key, "test_k".into());
assert_eq!(attributes[0].value, "test_v".into());
}
#[test]
#[allow(deprecated)]
fn versioned_logger_options() {
let provider = LoggerProvider::builder().build();
let logger = provider.versioned_logger(
"test_logger",
Some("v1.2.3".into()),
Some("https://opentelemetry.io/schema/1.0.0".into()),
Some(vec![(KeyValue::new("test_k", "test_v"))]),
);
let instrumentation_library = logger.instrumentation_library();
let attributes = &instrumentation_library.attributes;
assert_eq!(instrumentation_library.version, Some("v1.2.3".into()));
assert_eq!(
instrumentation_library.schema_url,
Some("https://opentelemetry.io/schema/1.0.0".into())
);
assert_eq!(attributes.len(), 1);
assert_eq!(attributes[0].key, "test_k".into());
assert_eq!(attributes[0].value, "test_v".into());
}
}