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
use crate::visitor::{event_to_values, span_to_values, OpenTelemetryVisitor};
use opentelemetry::api::trace::{self, span_context::SpanId, span_context::TraceId};
use opentelemetry::sdk::trace::config::Config;
use opentelemetry::sdk::trace::evicted_hash_map::EvictedHashMap;
use opentelemetry::sdk::EvictedQueue;
use std::collections::HashMap;
use std::sync::Arc;
use tracing_distributed::{Event, Span, Telemetry};
#[cfg(feature = "use_parking_lot")]
use parking_lot::Mutex;
#[cfg(not(feature = "use_parking_lot"))]
use std::sync::Mutex;
#[derive(Debug)]
pub struct OpenTelemetry {
pub(crate) exporter: Box<dyn opentelemetry::exporter::trace::SpanExporter>,
pub(crate) events: Mutex<HashMap<SpanId, EvictedQueue<trace::event::Event>>>,
pub(crate) config: Config,
}
impl Telemetry for OpenTelemetry {
type Visitor = OpenTelemetryVisitor;
type TraceId = TraceId;
type SpanId = SpanId;
fn mk_visitor(&self) -> Self::Visitor {
OpenTelemetryVisitor(EvictedHashMap::new(self.config.max_attributes_per_span))
}
fn report_span(&self, span: Span<Self::Visitor, Self::SpanId, Self::TraceId>) {
#[cfg(not(feature = "use_parking_lot"))]
let mut events = self.events.lock().unwrap();
#[cfg(feature = "use_parking_lot")]
let mut events = self.events.lock();
let events = events
.remove(&span.id)
.unwrap_or_else(|| EvictedQueue::new(0));
let data = span_to_values(span, events);
self.exporter.export(vec![Arc::new(data)]);
}
fn report_event(&self, event: Event<Self::Visitor, Self::SpanId, Self::TraceId>) {
if let Some(id) = event.parent_id {
#[cfg(not(feature = "use_parking_lot"))]
let mut events = self.events.lock().unwrap();
#[cfg(feature = "use_parking_lot")]
let mut events = self.events.lock();
if let Some(q) = events.get_mut(&id) {
q.append_vec(&mut vec![event_to_values(event)]);
} else {
let mut q = EvictedQueue::new(self.config.max_events_per_span);
q.append_vec(&mut vec![event_to_values(event)]);
events.insert(id, q);
}
}
}
}