-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathtracer_metadata.rs
More file actions
304 lines (275 loc) · 11 KB
/
tracer_metadata.rs
File metadata and controls
304 lines (275 loc) · 11 KB
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
// Copyright 2023-Present Datadog, Inc. https://www.datadoghq.com/
// SPDX-License-Identifier: Apache-2.0
use libdd_trace_protobuf::opentelemetry::proto as otel_proto;
use std::default::Default;
/// This struct MUST be backward compatible.
#[derive(serde::Serialize, Debug)]
pub struct TracerMetadata {
/// Version of the schema.
pub schema_version: u8,
/// Runtime UUID.
#[serde(skip_serializing_if = "Option::is_none")]
pub runtime_id: Option<String>,
/// Programming language of the tracer library (e.g., “python”). Refers to telemetry
/// for valid values.
pub tracer_language: String,
/// Version of the tracer (e.g., "1.0.0").
pub tracer_version: String,
/// Identifier of the machine running the process.
pub hostname: String,
/// Name of the service being instrumented.
#[serde(skip_serializing_if = "Option::is_none")]
pub service_name: Option<String>,
/// Environment of the service being instrumented.
#[serde(skip_serializing_if = "Option::is_none")]
pub service_env: Option<String>,
/// Version of the service being instrumented.
#[serde(skip_serializing_if = "Option::is_none")]
pub service_version: Option<String>,
/// Process tags of the application being instrumented.
#[serde(skip_serializing_if = "Option::is_none")]
pub process_tags: Option<String>,
/// Container id seen by the application.
#[serde(skip_serializing_if = "Option::is_none")]
pub container_id: Option<String>,
/// Ordered list of attribute key names for thread-level context records. Key indices from
/// thread context records index into this table. Set to `None` to disable thread-level related
/// attributes to the process-level context.
///
/// If set to `Some`, the first key will be automatically set to `datadog.local_root_span_id`
/// in the OTel process context, because the thread context handling elsewhere in libdatadog
/// relies on this key's index to be zero. Only set additional keys in
/// `threadlocal_attribute_keys`; the root span id is considered to always be here implicitly.
///
/// This field is specific to OTel process context. It is ignored for (de)serialization, and is
/// only used when converting to an OTel process context in
/// [TracerMetadata::to_otel_process_ctx].
#[cfg(feature = "otel-thread-ctx")]
#[serde(skip)]
pub threadlocal_attribute_keys: Option<Vec<String>>,
}
impl Default for TracerMetadata {
fn default() -> Self {
TracerMetadata {
schema_version: 2,
runtime_id: None,
tracer_language: String::new(),
tracer_version: String::new(),
hostname: String::new(),
service_name: None,
service_env: None,
service_version: None,
process_tags: None,
container_id: None,
#[cfg(feature = "otel-thread-ctx")]
threadlocal_attribute_keys: None,
}
}
}
impl TracerMetadata {
// The value of the telemetry.sdk.name field to put in the otel context resource.
const OTEL_SDK_NAME: &str = "libdatadog";
pub fn to_otel_process_ctx(&self) -> otel_proto::common::v1::ProcessContext {
#[cfg(feature = "otel-thread-ctx")]
use otel_proto::common::v1::ArrayValue;
use otel_proto::{
common::v1::{any_value, AnyValue, KeyValue, ProcessContext},
resource::v1::Resource,
};
fn key_value(key: &'static str, val: String) -> KeyValue {
KeyValue {
key: key.to_owned(),
value: Some(AnyValue {
value: Some(any_value::Value::StringValue(val)),
}),
key_ref: 0,
}
}
// Even if there's no value, we still set the key to let the reader know that we do support
// and emit this specific attribute, which happens to be empty in this case.
fn key_value_opt(key: &'static str, val: &Option<String>) -> KeyValue {
key_value(key, val.as_ref().cloned().unwrap_or_default())
}
// Every field of `self` should get propagated to the otel context.
// If you add a new field, please also add it here and as a key/value in the otel context.
let TracerMetadata {
// This one isn't propagated on purpose
schema_version: _,
runtime_id,
tracer_language,
tracer_version,
hostname,
service_name,
service_env,
service_version,
process_tags,
container_id,
#[cfg(feature = "otel-thread-ctx")]
threadlocal_attribute_keys,
} = self;
#[cfg_attr(not(feature = "otel-thread-ctx"), allow(unused_mut))]
let mut attributes = vec![
key_value_opt("service.name", service_name),
key_value_opt("service.instance.id", runtime_id),
key_value_opt("service.version", service_version),
key_value_opt("deployment.environment.name", service_env),
key_value("telemetry.sdk.language", tracer_language.clone()),
key_value("telemetry.sdk.version", tracer_version.clone()),
key_value("telemetry.sdk.name", Self::OTEL_SDK_NAME.to_owned()),
key_value("host.name", hostname.clone()),
key_value_opt("container.id", container_id),
];
#[cfg(feature = "otel-thread-ctx")]
if let Some(threadlocal_attribute_keys) = threadlocal_attribute_keys.as_ref() {
attributes.push(key_value(
"threadlocal.schema_version",
"tlsdesc_v1_dev".to_owned(),
));
attributes.push(KeyValue {
key: "threadlocal.attribute_key_map".to_owned(),
value: Some(AnyValue {
value: Some(any_value::Value::ArrayValue(ArrayValue {
values: std::iter::once(AnyValue {
value: Some(any_value::Value::StringValue(
"datadog.local_root_span_id".to_owned(),
)),
})
.chain(threadlocal_attribute_keys.iter().map(|k| AnyValue {
value: Some(any_value::Value::StringValue(k.clone())),
}))
.collect(),
})),
}),
key_ref: 0,
});
}
ProcessContext {
resource: Some(Resource {
attributes,
dropped_attributes_count: 0,
entity_refs: vec![],
}),
extra_attributes: vec![key_value_opt("datadog.process_tags", process_tags)],
}
}
}
pub enum AnonymousFileHandle {
#[cfg(target_os = "linux")]
Linux(memfd::Memfd),
#[cfg(not(target_os = "linux"))]
Other(()),
}
#[cfg(target_os = "linux")]
mod linux {
use anyhow::Context;
use rand::distributions::Alphanumeric;
use rand::Rng;
use std::io::Write;
/// Create a memfd file storing the tracer metadata. This function also attempts to publish the
/// tracer metadata as an OTel process context separately, but will ignore resulting errors.
pub fn store_tracer_metadata(
data: &super::TracerMetadata,
) -> anyhow::Result<super::AnonymousFileHandle> {
let _ = crate::otel_process_ctx::linux::publish(&data.to_otel_process_ctx());
let uid: String = rand::thread_rng()
.sample_iter(&Alphanumeric)
.take(8)
.map(char::from)
.collect();
let mfd_name: String = format!("datadog-tracer-info-{uid}");
let mfd = memfd::MemfdOptions::default()
.close_on_exec(true)
.allow_sealing(true)
.create::<&str>(mfd_name.as_ref())
.context("unable to create memfd")?;
let buf = rmp_serde::to_vec_named(data).context("failed serialization")?;
mfd.as_file()
.write_all(&buf)
.context("unable to write into memfd")?;
mfd.add_seals(&[
memfd::FileSeal::SealShrink,
memfd::FileSeal::SealGrow,
memfd::FileSeal::SealSeal,
])
.context("unable to seal memfd")?;
Ok(super::AnonymousFileHandle::Linux(mfd))
}
}
#[cfg(not(target_os = "linux"))]
mod other {
pub fn store_tracer_metadata(
_data: &super::TracerMetadata,
) -> anyhow::Result<super::AnonymousFileHandle> {
Ok(super::AnonymousFileHandle::Other(()))
}
}
#[cfg(target_os = "linux")]
pub use linux::*;
#[cfg(not(target_os = "linux"))]
pub use other::*;
#[cfg(test)]
mod tests {
use super::*;
#[cfg(feature = "otel-thread-ctx")]
use libdd_trace_protobuf::opentelemetry::proto::common::v1::any_value;
use libdd_trace_protobuf::opentelemetry::proto::common::v1::{AnyValue, ProcessContext};
fn find_attr<'a>(ctx: &'a ProcessContext, key: &str) -> Option<&'a AnyValue> {
ctx.resource
.as_ref()?
.attributes
.iter()
.find(|kv| kv.key == key)?
.value
.as_ref()
}
#[test]
fn threadlocal_attrs_absent_when_keys_empty() {
let ctx = TracerMetadata::default().to_otel_process_ctx();
assert!(find_attr(&ctx, "threadlocal.schema_version").is_none());
assert!(find_attr(&ctx, "threadlocal.attribute_key_map").is_none());
}
#[cfg(feature = "otel-thread-ctx")]
#[test]
fn threadlocal_attrs_present_with_correct_values() {
let ctx = TracerMetadata {
threadlocal_attribute_keys: Some(vec![
"span.id".to_owned(),
"trace.id".to_owned(),
"custom.key".to_owned(),
]),
..Default::default()
}
.to_otel_process_ctx();
// Schema version attribute
let schema_version = find_attr(&ctx, "threadlocal.schema_version")
.expect("threadlocal.schema_version should be present");
assert_eq!(
schema_version.value,
Some(any_value::Value::StringValue("tlsdesc_v1_dev".to_owned()))
);
// Key map attribute: ordered array of key name strings
let key_map = find_attr(&ctx, "threadlocal.attribute_key_map")
.expect("threadlocal.attribute_key_map should be present");
let array = match &key_map.value {
Some(any_value::Value::ArrayValue(a)) => a,
other => panic!("expected ArrayValue, got {:?}", other),
};
let keys: Vec<&str> = array
.values
.iter()
.map(|v| match &v.value {
Some(any_value::Value::StringValue(s)) => s.as_str(),
other => panic!("expected StringValue, got {:?}", other),
})
.collect();
assert_eq!(
keys,
[
"datadog.local_root_span_id",
"span.id",
"trace.id",
"custom.key"
]
);
}
}