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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
use std::sync::Arc;
use std::sync::Mutex;
use crate::{protocol, Hub};
#[cfg(feature = "client")]
use crate::Client;
#[cfg(feature = "client")]
const MAX_SPANS: usize = 1_000;
pub fn start_transaction(ctx: TransactionContext) -> Transaction {
#[cfg(feature = "client")]
{
let client = Hub::with_active(|hub| hub.client());
Transaction::new(client, ctx)
}
#[cfg(not(feature = "client"))]
{
Transaction::new_noop(ctx)
}
}
impl Hub {
pub fn start_transaction(&self, ctx: TransactionContext) -> Transaction {
#[cfg(feature = "client")]
{
Transaction::new(self.client(), ctx)
}
#[cfg(not(feature = "client"))]
{
Transaction::new_noop(ctx)
}
}
}
#[derive(Debug)]
pub struct TransactionContext {
#[cfg_attr(not(feature = "client"), allow(dead_code))]
name: String,
op: String,
trace_id: protocol::TraceId,
parent_span_id: Option<protocol::SpanId>,
sampled: Option<bool>,
}
impl TransactionContext {
#[must_use = "this must be used with `start_transaction`"]
pub fn new(name: &str, op: &str) -> Self {
Self::continue_from_headers(name, op, vec![])
}
#[must_use = "this must be used with `start_transaction`"]
pub fn continue_from_headers<'a, I: IntoIterator<Item = (&'a str, &'a str)>>(
name: &str,
op: &str,
headers: I,
) -> Self {
let mut trace = None;
for (k, v) in headers.into_iter() {
if k.eq_ignore_ascii_case("sentry-trace") {
trace = parse_sentry_trace(v);
}
}
let (trace_id, parent_span_id, sampled) = match trace {
Some(trace) => (trace.0, Some(trace.1), trace.2),
None => (protocol::TraceId::default(), None, None),
};
Self {
name: name.into(),
op: op.into(),
trace_id,
parent_span_id,
sampled,
}
}
pub fn continue_from_span(name: &str, op: &str, span: Option<TransactionOrSpan>) -> Self {
let span = match span {
Some(span) => span,
None => return Self::new(name, op),
};
let (trace_id, parent_span_id, sampled) = match span {
TransactionOrSpan::Transaction(transaction) => {
let inner = transaction.inner.lock().unwrap();
(
inner.context.trace_id,
inner.context.span_id,
Some(inner.sampled),
)
}
TransactionOrSpan::Span(span) => {
let sampled = span.sampled;
let span = span.span.lock().unwrap();
(span.trace_id, span.span_id, Some(sampled))
}
};
Self {
name: name.into(),
op: op.into(),
trace_id,
parent_span_id: Some(parent_span_id),
sampled,
}
}
pub fn set_sampled(&mut self, sampled: impl Into<Option<bool>>) {
self.sampled = sampled.into();
}
}
#[derive(Clone, Debug)]
pub enum TransactionOrSpan {
Transaction(Transaction),
Span(Span),
}
impl From<Transaction> for TransactionOrSpan {
fn from(transaction: Transaction) -> Self {
Self::Transaction(transaction)
}
}
impl From<Span> for TransactionOrSpan {
fn from(span: Span) -> Self {
Self::Span(span)
}
}
impl TransactionOrSpan {
pub fn set_data(&self, key: &str, value: protocol::Value) {
match self {
TransactionOrSpan::Transaction(transaction) => transaction.set_data(key, value),
TransactionOrSpan::Span(span) => span.set_data(key, value),
}
}
pub fn get_status(&self) -> Option<protocol::SpanStatus> {
match self {
TransactionOrSpan::Transaction(transaction) => transaction.get_status(),
TransactionOrSpan::Span(span) => span.get_status(),
}
}
pub fn set_status(&self, status: protocol::SpanStatus) {
match self {
TransactionOrSpan::Transaction(transaction) => transaction.set_status(status),
TransactionOrSpan::Span(span) => span.set_status(status),
}
}
pub fn set_request(&self, request: protocol::Request) {
match self {
TransactionOrSpan::Transaction(transaction) => transaction.set_request(request),
TransactionOrSpan::Span(span) => span.set_request(request),
}
}
pub fn iter_headers(&self) -> TraceHeadersIter {
match self {
TransactionOrSpan::Transaction(transaction) => transaction.iter_headers(),
TransactionOrSpan::Span(span) => span.iter_headers(),
}
}
#[must_use = "a span must be explicitly closed via `finish()`"]
pub fn start_child(&self, op: &str, description: &str) -> Span {
match self {
TransactionOrSpan::Transaction(transaction) => transaction.start_child(op, description),
TransactionOrSpan::Span(span) => span.start_child(op, description),
}
}
#[cfg(feature = "client")]
pub(crate) fn apply_to_event(&self, event: &mut protocol::Event<'_>) {
if event.contexts.contains_key("trace") {
return;
}
let context = match self {
TransactionOrSpan::Transaction(transaction) => {
transaction.inner.lock().unwrap().context.clone()
}
TransactionOrSpan::Span(span) => {
let span = span.span.lock().unwrap();
protocol::TraceContext {
span_id: span.span_id,
trace_id: span.trace_id,
..Default::default()
}
}
};
event.contexts.insert("trace".into(), context.into());
}
pub fn finish(self) {
match self {
TransactionOrSpan::Transaction(transaction) => transaction.finish(),
TransactionOrSpan::Span(span) => span.finish(),
}
}
}
#[derive(Debug)]
pub(crate) struct TransactionInner {
#[cfg(feature = "client")]
client: Option<Arc<Client>>,
sampled: bool,
context: protocol::TraceContext,
pub(crate) transaction: Option<protocol::Transaction<'static>>,
}
type TransactionArc = Arc<Mutex<TransactionInner>>;
#[derive(Clone, Debug)]
pub struct Transaction {
pub(crate) inner: TransactionArc,
}
impl Transaction {
#[cfg(feature = "client")]
fn new(mut client: Option<Arc<Client>>, ctx: TransactionContext) -> Self {
let context = protocol::TraceContext {
trace_id: ctx.trace_id,
parent_span_id: ctx.parent_span_id,
op: Some(ctx.op),
..Default::default()
};
let (sampled, mut transaction) = match client.as_ref() {
Some(client) => (
ctx.sampled
.unwrap_or_else(|| client.sample_traces_should_send()),
Some(protocol::Transaction {
name: Some(ctx.name),
..Default::default()
}),
),
None => (ctx.sampled.unwrap_or(false), None),
};
if !sampled {
transaction = None;
client = None;
}
Self {
inner: Arc::new(Mutex::new(TransactionInner {
client,
sampled,
context,
transaction,
})),
}
}
#[cfg(not(feature = "client"))]
fn new_noop(ctx: TransactionContext) -> Self {
let context = protocol::TraceContext {
trace_id: ctx.trace_id,
parent_span_id: ctx.parent_span_id,
op: Some(ctx.op),
..Default::default()
};
let sampled = ctx.sampled.unwrap_or(false);
Self {
inner: Arc::new(Mutex::new(TransactionInner {
sampled,
context,
transaction: None,
})),
}
}
pub fn set_data(&self, key: &str, value: protocol::Value) {
let mut inner = self.inner.lock().unwrap();
if let Some(transaction) = inner.transaction.as_mut() {
transaction.extra.insert(key.into(), value);
}
}
pub fn get_status(&self) -> Option<protocol::SpanStatus> {
let inner = self.inner.lock().unwrap();
inner.context.status
}
pub fn set_status(&self, status: protocol::SpanStatus) {
let mut inner = self.inner.lock().unwrap();
inner.context.status = Some(status);
}
pub fn set_request(&self, request: protocol::Request) {
let mut inner = self.inner.lock().unwrap();
if let Some(transaction) = inner.transaction.as_mut() {
transaction.request = Some(request);
}
}
pub fn iter_headers(&self) -> TraceHeadersIter {
let inner = self.inner.lock().unwrap();
let trace = SentryTrace(
inner.context.trace_id,
inner.context.span_id,
Some(inner.sampled),
);
TraceHeadersIter {
sentry_trace: Some(trace.to_string()),
}
}
pub fn finish(self) {
with_client_impl! {{
let mut inner = self.inner.lock().unwrap();
if let Some(mut transaction) = inner.transaction.take() {
if let Some(client) = inner.client.take() {
transaction.finish();
transaction
.contexts
.insert("trace".into(), inner.context.clone().into());
let opts = client.options();
transaction.release = opts.release.clone();
transaction.environment = opts.environment.clone();
transaction.sdk = Some(std::borrow::Cow::Owned(client.sdk_info.clone()));
let mut envelope = protocol::Envelope::new();
envelope.add_item(transaction);
client.send_envelope(envelope)
}
}
}}
}
#[must_use = "a span must be explicitly closed via `finish()`"]
pub fn start_child(&self, op: &str, description: &str) -> Span {
let inner = self.inner.lock().unwrap();
let span = protocol::Span {
trace_id: inner.context.trace_id,
parent_span_id: Some(inner.context.span_id),
op: Some(op.into()),
description: if description.is_empty() {
None
} else {
Some(description.into())
},
..Default::default()
};
Span {
transaction: Arc::clone(&self.inner),
sampled: inner.sampled,
span: Arc::new(Mutex::new(span)),
}
}
}
#[derive(Clone, Debug)]
pub struct Span {
pub(crate) transaction: TransactionArc,
sampled: bool,
span: SpanArc,
}
type SpanArc = Arc<Mutex<protocol::Span>>;
impl Span {
pub fn set_data(&self, key: &str, value: protocol::Value) {
let mut span = self.span.lock().unwrap();
span.data.insert(key.into(), value);
}
pub fn get_status(&self) -> Option<protocol::SpanStatus> {
let span = self.span.lock().unwrap();
span.status
}
pub fn set_status(&self, status: protocol::SpanStatus) {
let mut span = self.span.lock().unwrap();
span.status = Some(status);
}
pub fn set_request(&self, request: protocol::Request) {
let mut span = self.span.lock().unwrap();
if let Some(method) = request.method {
span.data.insert("method".into(), method.into());
}
if let Some(url) = request.url {
span.data.insert("url".into(), url.to_string().into());
}
if let Some(data) = request.data {
if let Ok(data) = serde_json::from_str::<serde_json::Value>(&data) {
span.data.insert("data".into(), data);
} else {
span.data.insert("data".into(), data.into());
}
}
if let Some(query_string) = request.query_string {
span.data.insert("query_string".into(), query_string.into());
}
if let Some(cookies) = request.cookies {
span.data.insert("cookies".into(), cookies.into());
}
if !request.headers.is_empty() {
if let Ok(headers) = serde_json::to_value(request.headers) {
span.data.insert("headers".into(), headers);
}
}
if !request.env.is_empty() {
if let Ok(env) = serde_json::to_value(request.env) {
span.data.insert("env".into(), env);
}
}
}
pub fn iter_headers(&self) -> TraceHeadersIter {
let span = self.span.lock().unwrap();
let trace = SentryTrace(span.trace_id, span.span_id, Some(self.sampled));
TraceHeadersIter {
sentry_trace: Some(trace.to_string()),
}
}
pub fn finish(self) {
with_client_impl! {{
let mut span = self.span.lock().unwrap();
if span.timestamp.is_some() {
return;
}
span.finish();
let mut inner = self.transaction.lock().unwrap();
if let Some(transaction) = inner.transaction.as_mut() {
if transaction.spans.len() <= MAX_SPANS {
transaction.spans.push(span.clone());
}
}
}}
}
#[must_use = "a span must be explicitly closed via `finish()`"]
pub fn start_child(&self, op: &str, description: &str) -> Span {
let span = self.span.lock().unwrap();
let span = protocol::Span {
trace_id: span.trace_id,
parent_span_id: Some(span.span_id),
op: Some(op.into()),
description: if description.is_empty() {
None
} else {
Some(description.into())
},
..Default::default()
};
Span {
transaction: self.transaction.clone(),
sampled: self.sampled,
span: Arc::new(Mutex::new(span)),
}
}
}
pub struct TraceHeadersIter {
sentry_trace: Option<String>,
}
impl Iterator for TraceHeadersIter {
type Item = (&'static str, String);
fn next(&mut self) -> Option<Self::Item> {
self.sentry_trace.take().map(|st| ("sentry-trace", st))
}
}
#[derive(Debug, PartialEq)]
struct SentryTrace(protocol::TraceId, protocol::SpanId, Option<bool>);
fn parse_sentry_trace(header: &str) -> Option<SentryTrace> {
let header = header.trim();
let mut parts = header.splitn(3, '-');
let trace_id = parts.next()?.parse().ok()?;
let parent_span_id = parts.next()?.parse().ok()?;
let parent_sampled = parts.next().and_then(|sampled| match sampled {
"1" => Some(true),
"0" => Some(false),
_ => None,
});
Some(SentryTrace(trace_id, parent_span_id, parent_sampled))
}
impl std::fmt::Display for SentryTrace {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}-{}", self.0, self.1)?;
if let Some(sampled) = self.2 {
write!(f, "-{}", if sampled { '1' } else { '0' })?;
}
Ok(())
}
}
#[cfg(test)]
mod tests {
use std::str::FromStr;
use super::*;
#[test]
fn parses_sentry_trace() {
let trace_id = protocol::TraceId::from_str("09e04486820349518ac7b5d2adbf6ba5").unwrap();
let parent_trace_id = protocol::SpanId::from_str("9cf635fa5b870b3a").unwrap();
let trace = parse_sentry_trace("09e04486820349518ac7b5d2adbf6ba5-9cf635fa5b870b3a-0");
assert_eq!(
trace,
Some(SentryTrace(trace_id, parent_trace_id, Some(false)))
);
let trace = SentryTrace(Default::default(), Default::default(), None);
let parsed = parse_sentry_trace(&format!("{}", trace));
assert_eq!(parsed, Some(trace));
}
#[test]
fn disabled_forwards_trace_id() {
let headers = [(
"SenTrY-TRAce",
"09e04486820349518ac7b5d2adbf6ba5-9cf635fa5b870b3a-1",
)];
let ctx = TransactionContext::continue_from_headers("noop", "noop", headers);
let trx = start_transaction(ctx);
let span = trx.start_child("noop", "noop");
let header = span.iter_headers().next().unwrap().1;
let parsed = parse_sentry_trace(&header).unwrap();
assert_eq!(&parsed.0.to_string(), "09e04486820349518ac7b5d2adbf6ba5");
assert_eq!(parsed.2, Some(true));
}
}