-
Notifications
You must be signed in to change notification settings - Fork 86
/
layer.rs
1798 lines (1615 loc) · 64.7 KB
/
layer.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
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
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
use crate::{OtelData, PreSampledTracer};
use once_cell::unsync;
use opentelemetry::{
trace::{self as otel, noop, SpanBuilder, SpanKind, Status, TraceContextExt},
Context as OtelContext, Key, KeyValue, StringValue, Value,
};
use std::fmt;
use std::marker;
use std::thread;
#[cfg(not(all(target_arch = "wasm32", not(target_os = "wasi"))))]
use std::time::Instant;
use std::{any::TypeId, borrow::Cow};
use tracing_core::span::{self, Attributes, Id, Record};
use tracing_core::{field, Event, Subscriber};
#[cfg(feature = "tracing-log")]
use tracing_log::NormalizeEvent;
use tracing_subscriber::layer::Context;
use tracing_subscriber::registry::LookupSpan;
use tracing_subscriber::Layer;
#[cfg(all(target_arch = "wasm32", not(target_os = "wasi")))]
use web_time::Instant;
const SPAN_NAME_FIELD: &str = "otel.name";
const SPAN_KIND_FIELD: &str = "otel.kind";
const SPAN_STATUS_CODE_FIELD: &str = "otel.status_code";
const SPAN_STATUS_MESSAGE_FIELD: &str = "otel.status_message";
const EVENT_EXCEPTION_NAME: &str = "exception";
const FIELD_EXCEPTION_MESSAGE: &str = "exception.message";
const FIELD_EXCEPTION_STACKTRACE: &str = "exception.stacktrace";
/// An [OpenTelemetry] propagation layer for use in a project that uses
/// [tracing].
///
/// [OpenTelemetry]: https://opentelemetry.io
/// [tracing]: https://github.com/tokio-rs/tracing
pub struct OpenTelemetryLayer<S, T> {
tracer: T,
location: bool,
tracked_inactivity: bool,
with_threads: bool,
with_level: bool,
sem_conv_config: SemConvConfig,
get_context: WithContext,
_registry: marker::PhantomData<S>,
}
impl<S> Default for OpenTelemetryLayer<S, noop::NoopTracer>
where
S: Subscriber + for<'span> LookupSpan<'span>,
{
fn default() -> Self {
OpenTelemetryLayer::new(noop::NoopTracer::new())
}
}
/// Construct a layer to track spans via [OpenTelemetry].
///
/// [OpenTelemetry]: https://opentelemetry.io
///
/// # Examples
///
/// ```rust,no_run
/// use tracing_subscriber::layer::SubscriberExt;
/// use tracing_subscriber::Registry;
///
/// // Use the tracing subscriber `Registry`, or any other subscriber
/// // that impls `LookupSpan`
/// let subscriber = Registry::default().with(tracing_opentelemetry::layer());
/// # drop(subscriber);
/// ```
pub fn layer<S>() -> OpenTelemetryLayer<S, noop::NoopTracer>
where
S: Subscriber + for<'span> LookupSpan<'span>,
{
OpenTelemetryLayer::default()
}
// this function "remembers" the types of the subscriber so that we
// can downcast to something aware of them without knowing those
// types at the callsite.
//
// See https://github.com/tokio-rs/tracing/blob/4dad420ee1d4607bad79270c1520673fa6266a3d/tracing-error/src/layer.rs
pub(crate) struct WithContext(
#[allow(clippy::type_complexity)]
fn(&tracing::Dispatch, &span::Id, f: &mut dyn FnMut(&mut OtelData, &dyn PreSampledTracer)),
);
impl WithContext {
// This function allows a function to be called in the context of the
// "remembered" subscriber.
pub(crate) fn with_context(
&self,
dispatch: &tracing::Dispatch,
id: &span::Id,
mut f: impl FnMut(&mut OtelData, &dyn PreSampledTracer),
) {
(self.0)(dispatch, id, &mut f)
}
}
fn str_to_span_kind(s: &str) -> Option<otel::SpanKind> {
match s {
s if s.eq_ignore_ascii_case("server") => Some(otel::SpanKind::Server),
s if s.eq_ignore_ascii_case("client") => Some(otel::SpanKind::Client),
s if s.eq_ignore_ascii_case("producer") => Some(otel::SpanKind::Producer),
s if s.eq_ignore_ascii_case("consumer") => Some(otel::SpanKind::Consumer),
s if s.eq_ignore_ascii_case("internal") => Some(otel::SpanKind::Internal),
_ => None,
}
}
fn str_to_status(s: &str) -> otel::Status {
match s {
s if s.eq_ignore_ascii_case("ok") => otel::Status::Ok,
s if s.eq_ignore_ascii_case("error") => otel::Status::error(""),
_ => otel::Status::Unset,
}
}
#[derive(Default)]
struct SpanBuilderUpdates {
name: Option<Cow<'static, str>>,
span_kind: Option<SpanKind>,
status: Option<Status>,
attributes: Option<Vec<KeyValue>>,
}
impl SpanBuilderUpdates {
fn update(self, span_builder: &mut SpanBuilder) {
let Self {
name,
span_kind,
status,
attributes,
} = self;
if let Some(name) = name {
span_builder.name = name;
}
if let Some(span_kind) = span_kind {
span_builder.span_kind = Some(span_kind);
}
if let Some(status) = status {
span_builder.status = status;
}
if let Some(attributes) = attributes {
if let Some(builder_attributes) = &mut span_builder.attributes {
builder_attributes.extend(attributes);
} else {
span_builder.attributes = Some(attributes);
}
}
}
}
struct SpanEventVisitor<'a, 'b> {
event_builder: &'a mut otel::Event,
span_builder_updates: &'b mut Option<SpanBuilderUpdates>,
sem_conv_config: SemConvConfig,
}
impl field::Visit for SpanEventVisitor<'_, '_> {
/// Record events on the underlying OpenTelemetry [`Span`] from `bool` values.
///
/// [`Span`]: opentelemetry::trace::Span
fn record_bool(&mut self, field: &field::Field, value: bool) {
match field.name() {
"message" => self.event_builder.name = value.to_string().into(),
// Skip fields that are actually log metadata that have already been handled
#[cfg(feature = "tracing-log")]
name if name.starts_with("log.") => (),
name => {
self.event_builder
.attributes
.push(KeyValue::new(name, value));
}
}
}
/// Record events on the underlying OpenTelemetry [`Span`] from `f64` values.
///
/// [`Span`]: opentelemetry::trace::Span
fn record_f64(&mut self, field: &field::Field, value: f64) {
match field.name() {
"message" => self.event_builder.name = value.to_string().into(),
// Skip fields that are actually log metadata that have already been handled
#[cfg(feature = "tracing-log")]
name if name.starts_with("log.") => (),
name => {
self.event_builder
.attributes
.push(KeyValue::new(name, value));
}
}
}
/// Record events on the underlying OpenTelemetry [`Span`] from `i64` values.
///
/// [`Span`]: opentelemetry::trace::Span
fn record_i64(&mut self, field: &field::Field, value: i64) {
match field.name() {
"message" => self.event_builder.name = value.to_string().into(),
// Skip fields that are actually log metadata that have already been handled
#[cfg(feature = "tracing-log")]
name if name.starts_with("log.") => (),
name => {
self.event_builder
.attributes
.push(KeyValue::new(name, value));
}
}
}
/// Record events on the underlying OpenTelemetry [`Span`] from `&str` values.
///
/// [`Span`]: opentelemetry::trace::Span
fn record_str(&mut self, field: &field::Field, value: &str) {
match field.name() {
"message" => self.event_builder.name = value.to_string().into(),
// While tracing supports the error primitive, the instrumentation macro does not
// use the primitive and instead uses the debug or display primitive.
// In both cases, an event with an empty name and with an error attribute is created.
"error" if self.event_builder.name.is_empty() => {
if self.sem_conv_config.error_events_to_status {
self.span_builder_updates
.get_or_insert_with(SpanBuilderUpdates::default)
.status
.replace(otel::Status::error(format!("{:?}", value)));
}
if self.sem_conv_config.error_events_to_exceptions {
self.event_builder.name = EVENT_EXCEPTION_NAME.into();
self.event_builder.attributes.push(KeyValue::new(
FIELD_EXCEPTION_MESSAGE,
format!("{:?}", value),
));
} else {
self.event_builder
.attributes
.push(KeyValue::new("error", format!("{:?}", value)));
}
}
// Skip fields that are actually log metadata that have already been handled
#[cfg(feature = "tracing-log")]
name if name.starts_with("log.") => (),
name => {
self.event_builder
.attributes
.push(KeyValue::new(name, value.to_string()));
}
}
}
/// Record events on the underlying OpenTelemetry [`Span`] from values that
/// implement Debug.
///
/// [`Span`]: opentelemetry::trace::Span
fn record_debug(&mut self, field: &field::Field, value: &dyn fmt::Debug) {
match field.name() {
"message" => self.event_builder.name = format!("{:?}", value).into(),
// While tracing supports the error primitive, the instrumentation macro does not
// use the primitive and instead uses the debug or display primitive.
// In both cases, an event with an empty name and with an error attribute is created.
"error" if self.event_builder.name.is_empty() => {
if self.sem_conv_config.error_events_to_status {
self.span_builder_updates
.get_or_insert_with(SpanBuilderUpdates::default)
.status
.replace(otel::Status::error(format!("{:?}", value)));
}
if self.sem_conv_config.error_events_to_exceptions {
self.event_builder.name = EVENT_EXCEPTION_NAME.into();
self.event_builder.attributes.push(KeyValue::new(
FIELD_EXCEPTION_MESSAGE,
format!("{:?}", value),
));
} else {
self.event_builder
.attributes
.push(KeyValue::new("error", format!("{:?}", value)));
}
}
// Skip fields that are actually log metadata that have already been handled
#[cfg(feature = "tracing-log")]
name if name.starts_with("log.") => (),
name => {
self.event_builder
.attributes
.push(KeyValue::new(name, format!("{:?}", value)));
}
}
}
/// Set attributes on the underlying OpenTelemetry [`Span`] using a [`std::error::Error`]'s
/// [`std::fmt::Display`] implementation. Also adds the `source` chain as an extra field
///
/// [`Span`]: opentelemetry::trace::Span
fn record_error(
&mut self,
field: &tracing_core::Field,
value: &(dyn std::error::Error + 'static),
) {
let mut chain: Vec<StringValue> = Vec::new();
let mut next_err = value.source();
while let Some(err) = next_err {
chain.push(err.to_string().into());
next_err = err.source();
}
let error_msg = value.to_string();
if self.sem_conv_config.error_fields_to_exceptions {
self.event_builder.attributes.push(KeyValue::new(
Key::new(FIELD_EXCEPTION_MESSAGE),
Value::String(StringValue::from(error_msg.clone())),
));
// NOTE: This is actually not the stacktrace of the exception. This is
// the "source chain". It represents the heirarchy of errors from the
// app level to the lowest level such as IO. It does not represent all
// of the callsites in the code that led to the error happening.
// `std::error::Error::backtrace` is a nightly-only API and cannot be
// used here until the feature is stabilized.
self.event_builder.attributes.push(KeyValue::new(
Key::new(FIELD_EXCEPTION_STACKTRACE),
Value::Array(chain.clone().into()),
));
}
if self.sem_conv_config.error_records_to_exceptions {
let attributes = self
.span_builder_updates
.get_or_insert_with(SpanBuilderUpdates::default)
.attributes
.get_or_insert_with(Vec::new);
attributes.push(KeyValue::new(
FIELD_EXCEPTION_MESSAGE,
Value::String(error_msg.clone().into()),
));
// NOTE: This is actually not the stacktrace of the exception. This is
// the "source chain". It represents the heirarchy of errors from the
// app level to the lowest level such as IO. It does not represent all
// of the callsites in the code that led to the error happening.
// `std::error::Error::backtrace` is a nightly-only API and cannot be
// used here until the feature is stabilized.
attributes.push(KeyValue::new(
FIELD_EXCEPTION_STACKTRACE,
Value::Array(chain.clone().into()),
));
}
self.event_builder.attributes.push(KeyValue::new(
Key::new(field.name()),
Value::String(StringValue::from(error_msg)),
));
self.event_builder.attributes.push(KeyValue::new(
Key::new(format!("{}.chain", field.name())),
Value::Array(chain.into()),
));
}
}
/// Control over the mapping between tracing fields/events and OpenTelemetry conventional status/exception fields
#[derive(Clone, Copy)]
struct SemConvConfig {
/// If an error value is recorded on an event/span, should the otel fields
/// be added
///
/// Note that this uses tracings `record_error` which is only implemented for `(dyn Error + 'static)`.
error_fields_to_exceptions: bool,
/// If an error value is recorded on an event, should the otel fields be
/// added to the corresponding span
///
/// Note that this uses tracings `record_error` which is only implemented for `(dyn Error + 'static)`.
error_records_to_exceptions: bool,
/// If a function is instrumented and returns a `Result`, should the error
/// value be propagated to the span status.
///
/// Without this enabled, the span status will be "Error" with an empty description
/// when at least one error event is recorded in the span.
///
/// Note: the instrument macro will emit an error event if the function returns the `Err` variant.
/// This is not affected by this setting. Disabling this will only affect the span status.
error_events_to_status: bool,
/// If an event with an empty name and a field named `error` is recorded,
/// should the event be rewritten to have the name `exception` and the field `exception.message`
///
/// Follows the semantic conventions for exceptions.
///
/// Note: the instrument macro will emit an error event if the function returns the `Err` variant.
/// This is not affected by this setting. Disabling this will only affect the created fields on the OTel span.
error_events_to_exceptions: bool,
}
struct SpanAttributeVisitor<'a> {
span_builder_updates: &'a mut SpanBuilderUpdates,
sem_conv_config: SemConvConfig,
}
impl SpanAttributeVisitor<'_> {
fn record(&mut self, attribute: KeyValue) {
self.span_builder_updates
.attributes
.get_or_insert_with(Vec::new)
.push(KeyValue::new(attribute.key, attribute.value));
}
}
impl field::Visit for SpanAttributeVisitor<'_> {
/// Set attributes on the underlying OpenTelemetry [`Span`] from `bool` values.
///
/// [`Span`]: opentelemetry::trace::Span
fn record_bool(&mut self, field: &field::Field, value: bool) {
self.record(KeyValue::new(field.name(), value));
}
/// Set attributes on the underlying OpenTelemetry [`Span`] from `f64` values.
///
/// [`Span`]: opentelemetry::trace::Span
fn record_f64(&mut self, field: &field::Field, value: f64) {
self.record(KeyValue::new(field.name(), value));
}
/// Set attributes on the underlying OpenTelemetry [`Span`] from `i64` values.
///
/// [`Span`]: opentelemetry::trace::Span
fn record_i64(&mut self, field: &field::Field, value: i64) {
self.record(KeyValue::new(field.name(), value));
}
/// Set attributes on the underlying OpenTelemetry [`Span`] from `&str` values.
///
/// [`Span`]: opentelemetry::trace::Span
fn record_str(&mut self, field: &field::Field, value: &str) {
match field.name() {
SPAN_NAME_FIELD => self.span_builder_updates.name = Some(value.to_string().into()),
SPAN_KIND_FIELD => self.span_builder_updates.span_kind = str_to_span_kind(value),
SPAN_STATUS_CODE_FIELD => self.span_builder_updates.status = Some(str_to_status(value)),
SPAN_STATUS_MESSAGE_FIELD => {
self.span_builder_updates.status = Some(otel::Status::error(value.to_string()))
}
_ => self.record(KeyValue::new(field.name(), value.to_string())),
}
}
/// Set attributes on the underlying OpenTelemetry [`Span`] from values that
/// implement Debug.
///
/// [`Span`]: opentelemetry::trace::Span
fn record_debug(&mut self, field: &field::Field, value: &dyn fmt::Debug) {
match field.name() {
SPAN_NAME_FIELD => self.span_builder_updates.name = Some(format!("{:?}", value).into()),
SPAN_KIND_FIELD => {
self.span_builder_updates.span_kind = str_to_span_kind(&format!("{:?}", value))
}
SPAN_STATUS_CODE_FIELD => {
self.span_builder_updates.status = Some(str_to_status(&format!("{:?}", value)))
}
SPAN_STATUS_MESSAGE_FIELD => {
self.span_builder_updates.status = Some(otel::Status::error(format!("{:?}", value)))
}
_ => self.record(KeyValue::new(
Key::new(field.name()),
Value::String(format!("{:?}", value).into()),
)),
}
}
/// Set attributes on the underlying OpenTelemetry [`Span`] using a [`std::error::Error`]'s
/// [`std::fmt::Display`] implementation. Also adds the `source` chain as an extra field
///
/// [`Span`]: opentelemetry::trace::Span
fn record_error(
&mut self,
field: &tracing_core::Field,
value: &(dyn std::error::Error + 'static),
) {
let mut chain: Vec<StringValue> = Vec::new();
let mut next_err = value.source();
while let Some(err) = next_err {
chain.push(err.to_string().into());
next_err = err.source();
}
let error_msg = value.to_string();
if self.sem_conv_config.error_fields_to_exceptions {
self.record(KeyValue::new(
Key::new(FIELD_EXCEPTION_MESSAGE),
Value::from(error_msg.clone()),
));
// NOTE: This is actually not the stacktrace of the exception. This is
// the "source chain". It represents the heirarchy of errors from the
// app level to the lowest level such as IO. It does not represent all
// of the callsites in the code that led to the error happening.
// `std::error::Error::backtrace` is a nightly-only API and cannot be
// used here until the feature is stabilized.
self.record(KeyValue::new(
Key::new(FIELD_EXCEPTION_STACKTRACE),
Value::Array(chain.clone().into()),
));
}
self.record(KeyValue::new(
Key::new(field.name()),
Value::String(error_msg.into()),
));
self.record(KeyValue::new(
Key::new(format!("{}.chain", field.name())),
Value::Array(chain.into()),
));
}
}
impl<S, T> OpenTelemetryLayer<S, T>
where
S: Subscriber + for<'span> LookupSpan<'span>,
T: otel::Tracer + PreSampledTracer + 'static,
{
/// Set the [`Tracer`] that this layer will use to produce and track
/// OpenTelemetry [`Span`]s.
///
/// [`Tracer`]: opentelemetry::trace::Tracer
/// [`Span`]: opentelemetry::trace::Span
///
/// # Examples
///
/// ```no_run
/// use tracing_opentelemetry::OpenTelemetryLayer;
/// use tracing_subscriber::layer::SubscriberExt;
/// use opentelemetry::trace::TracerProvider as _;
/// use tracing_subscriber::Registry;
///
/// // Create an OTLP pipeline exporter for a `trace_demo` service.
///
/// let otlp_exporter = opentelemetry_otlp::SpanExporter::builder()
/// .with_tonic()
/// .build()
/// .unwrap();
///
/// let tracer = opentelemetry_sdk::trace::TracerProvider::builder()
/// .with_simple_exporter(otlp_exporter)
/// .build()
/// .tracer("trace_demo");
///
/// // Create a layer with the configured tracer
/// let otel_layer = OpenTelemetryLayer::new(tracer);
///
/// // Use the tracing subscriber `Registry`, or any other subscriber
/// // that impls `LookupSpan`
/// let subscriber = Registry::default().with(otel_layer);
/// # drop(subscriber);
/// ```
pub fn new(tracer: T) -> Self {
OpenTelemetryLayer {
tracer,
location: true,
tracked_inactivity: true,
with_threads: true,
with_level: false,
sem_conv_config: SemConvConfig {
error_fields_to_exceptions: true,
error_records_to_exceptions: true,
error_events_to_exceptions: true,
error_events_to_status: true,
},
get_context: WithContext(Self::get_context),
_registry: marker::PhantomData,
}
}
/// Set the [`Tracer`] that this layer will use to produce and track
/// OpenTelemetry [`Span`]s.
///
/// [`Tracer`]: opentelemetry::trace::Tracer
/// [`Span`]: opentelemetry::trace::Span
///
/// # Examples
///
/// ```no_run
/// use tracing_subscriber::layer::SubscriberExt;
/// use tracing_subscriber::Registry;
/// use opentelemetry::trace::TracerProvider;
///
/// // Create an OTLP pipeline exporter for a `trace_demo` service.
///
/// let otlp_exporter = opentelemetry_otlp::SpanExporter::builder()
/// .with_tonic()
/// .build()
/// .unwrap();
///
/// let tracer = opentelemetry_sdk::trace::TracerProvider::builder()
/// .with_simple_exporter(otlp_exporter)
/// .build()
/// .tracer("trace_demo");
///
/// // Create a layer with the configured tracer
/// let otel_layer = tracing_opentelemetry::layer().with_tracer(tracer);
///
/// // Use the tracing subscriber `Registry`, or any other subscriber
/// // that impls `LookupSpan`
/// let subscriber = Registry::default().with(otel_layer);
/// # drop(subscriber);
/// ```
pub fn with_tracer<Tracer>(self, tracer: Tracer) -> OpenTelemetryLayer<S, Tracer>
where
Tracer: otel::Tracer + PreSampledTracer + 'static,
{
OpenTelemetryLayer {
tracer,
location: self.location,
tracked_inactivity: self.tracked_inactivity,
with_threads: self.with_threads,
with_level: self.with_level,
sem_conv_config: self.sem_conv_config,
get_context: WithContext(OpenTelemetryLayer::<S, Tracer>::get_context),
_registry: self._registry,
// cannot use ``..self` here due to different generics
}
}
/// Sets whether or not span and event metadata should include OpenTelemetry
/// exception fields such as `exception.message` and `exception.backtrace`
/// when an `Error` value is recorded. If multiple error values are recorded
/// on the same span/event, only the most recently recorded error value will
/// show up under these fields.
///
/// These attributes follow the [OpenTelemetry semantic conventions for
/// exceptions][conv].
///
/// By default, these attributes are recorded.
/// Note that this only works for `(dyn Error + 'static)`.
/// See [Implementations on Foreign Types of tracing::Value][impls] or [`OpenTelemetryLayer::with_error_events_to_exceptions`]
///
/// [conv]: https://github.com/open-telemetry/semantic-conventions/tree/main/docs/exceptions/
/// [impls]: https://docs.rs/tracing/0.1.37/tracing/trait.Value.html#foreign-impls
pub fn with_error_fields_to_exceptions(self, error_fields_to_exceptions: bool) -> Self {
Self {
sem_conv_config: SemConvConfig {
error_fields_to_exceptions,
..self.sem_conv_config
},
..self
}
}
/// Sets whether or not an event considered for exception mapping (see [`OpenTelemetryLayer::with_error_recording`])
/// should be propagated to the span status error description.
///
///
/// By default, these events do set the span status error description.
pub fn with_error_events_to_status(self, error_events_to_status: bool) -> Self {
Self {
sem_conv_config: SemConvConfig {
error_events_to_status,
..self.sem_conv_config
},
..self
}
}
/// Sets whether or not a subset of events following the described schema are mapped to
/// events following the [OpenTelemetry semantic conventions for
/// exceptions][conv].
///
/// * Only events without a message field (unnamed events) and at least one field with the name error
/// are considered for mapping.
///
/// By default, these events are mapped.
///
/// [conv]: https://github.com/open-telemetry/semantic-conventions/tree/main/docs/exceptions/
pub fn with_error_events_to_exceptions(self, error_events_to_exceptions: bool) -> Self {
Self {
sem_conv_config: SemConvConfig {
error_events_to_exceptions,
..self.sem_conv_config
},
..self
}
}
/// Sets whether or not reporting an `Error` value on an event will
/// propagate the OpenTelemetry exception fields such as `exception.message`
/// and `exception.backtrace` to the corresponding span. You do not need to
/// enable `with_exception_fields` in order to enable this. If multiple
/// error values are recorded on the same span/event, only the most recently
/// recorded error value will show up under these fields.
///
/// These attributes follow the [OpenTelemetry semantic conventions for
/// exceptions][conv].
///
/// By default, these attributes are propagated to the span. Note that this only works for `(dyn Error + 'static)`.
/// See [Implementations on Foreign Types of tracing::Value][impls] or [`OpenTelemetryLayer::with_error_events_to_exceptions`]
///
/// [conv]: https://github.com/open-telemetry/semantic-conventions/tree/main/docs/exceptions/
/// [impls]: https://docs.rs/tracing/0.1.37/tracing/trait.Value.html#foreign-impls
pub fn with_error_records_to_exceptions(self, error_records_to_exceptions: bool) -> Self {
Self {
sem_conv_config: SemConvConfig {
error_records_to_exceptions,
..self.sem_conv_config
},
..self
}
}
/// Sets whether or not span and event metadata should include OpenTelemetry
/// attributes with location information, such as the file, module and line number.
///
/// These attributes follow the [OpenTelemetry semantic conventions for
/// source locations][conv].
///
/// By default, locations are enabled.
///
/// [conv]: https://github.com/open-telemetry/semantic-conventions/blob/main/docs/general/attributes.md#source-code-attributes/
pub fn with_location(self, location: bool) -> Self {
Self { location, ..self }
}
/// Sets whether or not spans metadata should include the _busy time_
/// (total time for which it was entered), and _idle time_ (total time
/// the span existed but was not entered).
pub fn with_tracked_inactivity(self, tracked_inactivity: bool) -> Self {
Self {
tracked_inactivity,
..self
}
}
/// Sets whether or not spans record additional attributes for the thread
/// name and thread ID of the thread they were created on, following the
/// [OpenTelemetry semantic conventions for threads][conv].
///
/// By default, thread attributes are enabled.
///
/// [conv]: https://github.com/open-telemetry/semantic-conventions/blob/main/docs/general/attributes.md#general-thread-attributes/
pub fn with_threads(self, threads: bool) -> Self {
Self {
with_threads: threads,
..self
}
}
/// Sets whether or not span metadata should include the `tracing` verbosity level information as a `level` field.
///
/// The level is always added to events, and based on [`OpenTelemetryLayer::with_error_events_to_status`]
/// error-level events will mark the span status as an error.
///
/// By default, level information is disabled.
pub fn with_level(self, level: bool) -> Self {
Self {
with_level: level,
..self
}
}
/// Retrieve the parent OpenTelemetry [`Context`] from the current tracing
/// [`span`] through the [`Registry`]. This [`Context`] links spans to their
/// parent for proper hierarchical visualization.
///
/// [`Context`]: opentelemetry::Context
/// [`span`]: tracing::Span
/// [`Registry`]: tracing_subscriber::Registry
fn parent_context(&self, attrs: &Attributes<'_>, ctx: &Context<'_, S>) -> OtelContext {
if let Some(parent) = attrs.parent() {
// A span can have an _explicit_ parent that is NOT seen by this `Layer` (for which
// `Context::span` returns `None`. This happens if the parent span is filtered away
// from the layer by a per-layer filter. In that case, we fall-through to the `else`
// case, and consider this span a root span.
//
// This is likely rare, as most users who use explicit parents will configure their
// filters so that children and parents are both seen, but it's not guaranteed. Also,
// if users configure their filter with a `reload` filter, it's possible that a parent
// and child have different filters as they are created with a filter change
// in-between.
//
// In these case, we prefer to emit a smaller span tree instead of panicking.
if let Some(span) = ctx.span(parent) {
let mut extensions = span.extensions_mut();
return extensions
.get_mut::<OtelData>()
.map(|builder| self.tracer.sampled_context(builder))
.unwrap_or_default();
}
}
// Else if the span is inferred from context, look up any available current span.
if attrs.is_contextual() {
ctx.lookup_current()
.and_then(|span| {
let mut extensions = span.extensions_mut();
extensions
.get_mut::<OtelData>()
.map(|builder| self.tracer.sampled_context(builder))
})
.unwrap_or_else(OtelContext::current)
// Explicit root spans should have no parent context.
} else {
OtelContext::new()
}
}
fn get_context(
dispatch: &tracing::Dispatch,
id: &span::Id,
f: &mut dyn FnMut(&mut OtelData, &dyn PreSampledTracer),
) {
let subscriber = dispatch
.downcast_ref::<S>()
.expect("subscriber should downcast to expected type; this is a bug!");
let span = subscriber
.span(id)
.expect("registry should have a span for the current ID");
let layer = dispatch
.downcast_ref::<OpenTelemetryLayer<S, T>>()
.expect("layer should downcast to expected type; this is a bug!");
let mut extensions = span.extensions_mut();
if let Some(builder) = extensions.get_mut::<OtelData>() {
f(builder, &layer.tracer);
}
}
fn extra_span_attrs(&self) -> usize {
let mut extra_attrs = 0;
if self.location {
extra_attrs += 3;
}
if self.with_threads {
extra_attrs += 2;
}
if self.with_level {
extra_attrs += 1;
}
extra_attrs
}
}
thread_local! {
static THREAD_ID: unsync::Lazy<u64> = unsync::Lazy::new(|| {
// OpenTelemetry's semantic conventions require the thread ID to be
// recorded as an integer, but `std::thread::ThreadId` does not expose
// the integer value on stable, so we have to convert it to a `usize` by
// parsing it. Since this requires allocating a `String`, store it in a
// thread local so we only have to do this once.
// TODO(eliza): once `std::thread::ThreadId::as_u64` is stabilized
// (https://github.com/rust-lang/rust/issues/67939), just use that.
thread_id_integer(thread::current().id())
});
}
impl<S, T> Layer<S> for OpenTelemetryLayer<S, T>
where
S: Subscriber + for<'span> LookupSpan<'span>,
T: otel::Tracer + PreSampledTracer + 'static,
{
/// Creates an [OpenTelemetry `Span`] for the corresponding [tracing `Span`].
///
/// [OpenTelemetry `Span`]: opentelemetry::trace::Span
/// [tracing `Span`]: tracing::Span
fn on_new_span(&self, attrs: &Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) {
let span = ctx.span(id).expect("Span not found, this is a bug");
let mut extensions = span.extensions_mut();
if self.tracked_inactivity && extensions.get_mut::<Timings>().is_none() {
extensions.insert(Timings::new());
}
let parent_cx = self.parent_context(attrs, &ctx);
let mut builder = self
.tracer
.span_builder(attrs.metadata().name())
.with_start_time(crate::time::now())
// Eagerly assign span id so children have stable parent id
.with_span_id(self.tracer.new_span_id());
// Record new trace id if there is no active parent span
if !parent_cx.has_active_span() {
builder.trace_id = Some(self.tracer.new_trace_id());
}
let builder_attrs = builder.attributes.get_or_insert(Vec::with_capacity(
attrs.fields().len() + self.extra_span_attrs(),
));
if self.location {
let meta = attrs.metadata();
if let Some(filename) = meta.file() {
builder_attrs.push(KeyValue::new("code.filepath", filename));
}
if let Some(module) = meta.module_path() {
builder_attrs.push(KeyValue::new("code.namespace", module));
}
if let Some(line) = meta.line() {
builder_attrs.push(KeyValue::new("code.lineno", line as i64));
}
}
if self.with_threads {
THREAD_ID.with(|id| builder_attrs.push(KeyValue::new("thread.id", **id as i64)));
if let Some(name) = std::thread::current().name() {
// TODO(eliza): it's a bummer that we have to allocate here, but
// we can't easily get the string as a `static`. it would be
// nice if `opentelemetry` could also take `Arc<str>`s as
// `String` values...
builder_attrs.push(KeyValue::new("thread.name", name.to_string()));
}
}
if self.with_level {
builder_attrs.push(KeyValue::new("level", attrs.metadata().level().as_str()));
}
let mut updates = SpanBuilderUpdates::default();
attrs.record(&mut SpanAttributeVisitor {
span_builder_updates: &mut updates,
sem_conv_config: self.sem_conv_config,
});
updates.update(&mut builder);
extensions.insert(OtelData { builder, parent_cx });
}
fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) {
if !self.tracked_inactivity {
return;
}
let span = ctx.span(id).expect("Span not found, this is a bug");
let mut extensions = span.extensions_mut();
if let Some(timings) = extensions.get_mut::<Timings>() {
let now = Instant::now();
timings.idle += (now - timings.last).as_nanos() as i64;
timings.last = now;
}
}
fn on_exit(&self, id: &span::Id, ctx: Context<'_, S>) {
let span = ctx.span(id).expect("Span not found, this is a bug");
let mut extensions = span.extensions_mut();
if let Some(otel_data) = extensions.get_mut::<OtelData>() {
otel_data.builder.end_time = Some(crate::time::now());
}
if !self.tracked_inactivity {
return;
}
if let Some(timings) = extensions.get_mut::<Timings>() {
let now = Instant::now();
timings.busy += (now - timings.last).as_nanos() as i64;
timings.last = now;
}
}
/// Record OpenTelemetry [`attributes`] for the given values.
///
/// [`attributes`]: opentelemetry::trace::SpanBuilder::attributes
fn on_record(&self, id: &Id, values: &Record<'_>, ctx: Context<'_, S>) {
let span = ctx.span(id).expect("Span not found, this is a bug");
let mut updates = SpanBuilderUpdates::default();
values.record(&mut SpanAttributeVisitor {
span_builder_updates: &mut updates,
sem_conv_config: self.sem_conv_config,
});
let mut extensions = span.extensions_mut();
if let Some(data) = extensions.get_mut::<OtelData>() {
updates.update(&mut data.builder);
}
}
fn on_follows_from(&self, id: &Id, follows: &Id, ctx: Context<S>) {
let span = ctx.span(id).expect("Span not found, this is a bug");
let mut extensions = span.extensions_mut();
let data = extensions
.get_mut::<OtelData>()
.expect("Missing otel data span extensions");
// The follows span may be filtered away (or closed), from this layer,
// in which case we just drop the data, as opposed to panicking. This
// uses the same reasoning as `parent_context` above.
if let Some(follows_span) = ctx.span(follows) {
let mut follows_extensions = follows_span.extensions_mut();
let follows_data = follows_extensions
.get_mut::<OtelData>()
.expect("Missing otel data span extensions");