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
use config::{ConfigError, Map, Source, Value};
use iroh_util::insert_into_config_map;
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct Config {
pub service_name: String,
pub instance_id: String,
pub build: String,
pub version: String,
pub service_env: String,
pub collect: bool,
pub tracing: bool,
pub collector_endpoint: String,
#[serde(alias = "prom_gateway_endpoint")]
pub prom_gateway_endpoint: String,
#[cfg(feature = "tokio-console")]
pub tokio_console: bool,
}
impl Source for Config {
fn clone_into_box(&self) -> Box<dyn Source + Send + Sync> {
Box::new(self.clone())
}
fn collect(&self) -> Result<Map<String, Value>, ConfigError> {
let mut map = Map::new();
insert_into_config_map(&mut map, "service_name", self.service_name.clone());
insert_into_config_map(&mut map, "instance_id", self.instance_id.clone());
insert_into_config_map(&mut map, "build", self.build.clone());
insert_into_config_map(&mut map, "version", self.version.clone());
insert_into_config_map(&mut map, "service_env", self.service_env.clone());
insert_into_config_map(&mut map, "collect", self.collect);
insert_into_config_map(&mut map, "tracing", self.tracing);
insert_into_config_map(
&mut map,
"collector_endpoint",
self.collector_endpoint.clone(),
);
insert_into_config_map(
&mut map,
"prom_gateway_endpoint",
self.prom_gateway_endpoint.clone(),
);
#[cfg(feature = "tokio-console")]
insert_into_config_map(&mut map, "tokio_console", self.tokio_console);
Ok(map)
}
}
impl Config {
pub fn with_service_name(mut self, name: String) -> Self {
self.service_name = name;
self
}
pub fn with_build(mut self, build: String) -> Self {
self.build = build;
self
}
pub fn with_version(mut self, version: String) -> Self {
self.version = version;
self
}
}
impl Default for Config {
fn default() -> Self {
Self {
service_name: "unknown".to_string(),
instance_id: names::Generator::default().next().unwrap(),
build: "unknown".to_string(),
version: "unknown".to_string(),
service_env: "dev".to_string(),
collect: false,
tracing: false,
collector_endpoint: "http://localhost:4317".to_string(),
prom_gateway_endpoint: "http://localhost:9091".to_string(),
#[cfg(feature = "tokio-console")]
tokio_console: false,
}
}
}
#[cfg(test)]
mod tests {
use super::*;
fn make_test_config() -> Config {
Config::default()
.with_service_name("test_service_name".into())
.with_build("test_build".into())
.with_version("test_version".into())
}
#[test]
fn test_collect() {
let cfg = make_test_config();
let mut expect: Map<String, Value> = Map::new();
expect.insert(
"service_name".to_string(),
Value::new(None, cfg.service_name.clone()),
);
expect.insert(
"instance_id".to_string(),
Value::new(None, cfg.instance_id.clone()),
);
expect.insert("build".to_string(), Value::new(None, cfg.build.clone()));
expect.insert("version".to_string(), Value::new(None, cfg.version.clone()));
expect.insert(
"service_env".to_string(),
Value::new(None, cfg.service_env.clone()),
);
expect.insert("collect".to_string(), Value::new(None, cfg.collect));
expect.insert("tracing".to_string(), Value::new(None, cfg.tracing));
expect.insert(
"collector_endpoint".to_string(),
Value::new(None, cfg.collector_endpoint.clone()),
);
expect.insert(
"prom_gateway_endpoint".to_string(),
Value::new(None, cfg.prom_gateway_endpoint.clone()),
);
#[cfg(feature = "tokio-console")]
expect.insert(
"tokio_console".to_string(),
Value::new(None, cfg.tokio_console),
);
let got = cfg.collect().unwrap();
for key in got.keys() {
let left = expect.get(key).unwrap();
let right = got.get(key).unwrap();
assert_eq!(left, right);
}
}
#[test]
fn test_build_config_from_struct() {
let expect = make_test_config();
let got: Config = config::Config::builder()
.add_source(expect.clone())
.build()
.unwrap()
.try_deserialize()
.unwrap();
assert_eq!(expect, got);
}
}