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
use crate::{subscriber::visitors::LocationVisitor, util::Flamegrapher, Error};
use lazy_static::lazy_static;
use parking_lot::RwLock;
use tracing::{callsite, span, subscriber, Metadata, Subscriber};
use tracing_subscriber::{layer::Context, registry::LookupSpan, Layer};
use std::{
cell::Cell,
collections::{HashMap, HashSet},
fmt::{Display, Write as _},
fs::File,
io::{BufWriter, Write},
path::Path,
time::{Duration, Instant},
};
lazy_static! {
static ref START: Instant = Instant::now();
}
thread_local! {
static LAST_EVENT: Cell<Instant> = Cell::new(*START);
}
pub struct FlamegraphLayer {
callsites: RwLock<HashSet<callsite::Identifier>>,
span_locations: RwLock<HashMap<span::Id, Option<SpanLocation>>>,
out_file: RwLock<BufWriter<File>>,
}
impl FlamegraphLayer {
pub(crate) fn new<P: AsRef<Path>>(stack_filename: P) -> Result<(Self, Flamegrapher), Error> {
let _ = *START;
let stack_filename = stack_filename.as_ref().with_extension("folded");
let out_file = File::create(stack_filename.clone()).map_err(Error::FlamegraphLayer)?;
let flamegrapher = Flamegrapher::new()
.with_stack_file(stack_filename)
.expect("stack file does not exist");
let layer = Self {
callsites: RwLock::new(HashSet::new()),
span_locations: RwLock::new(HashMap::new()),
out_file: RwLock::new(BufWriter::new(out_file)),
};
Ok((layer, flamegrapher))
}
fn is_tracked_callsite(&self, callsite: &callsite::Identifier) -> bool {
self.callsites.read().contains(callsite)
}
fn is_tracked<S>(&self, id: &span::Id, ctx: &Context<'_, S>) -> bool
where
S: Subscriber + for<'a> LookupSpan<'a>,
{
ctx.span(id)
.map(|span| self.is_tracked_callsite(&span.metadata().callsite()))
.unwrap_or(false)
}
fn stack_string_on_enter<S>(&self, id: &span::Id, ctx: &Context<'_, S>) -> String
where
S: Subscriber + for<'a> LookupSpan<'a>,
{
self.stack_string(id, ctx, true)
}
fn stack_string_on_exit<S>(&self, id: &span::Id, ctx: &Context<'_, S>) -> String
where
S: Subscriber + for<'a> LookupSpan<'a>,
{
self.stack_string(id, ctx, false)
}
fn stack_string<S>(
&self,
id: &span::Id,
ctx: &Context<'_, S>,
skip_current_span: bool,
) -> String
where
S: Subscriber + for<'a> LookupSpan<'a>,
{
let delta = self.time_since_last_event();
let mut stack_str = "all-spans".to_string();
let mut leaf_span = Some(ctx.span(id).expect("span is not in registry"));
if skip_current_span {
leaf_span = leaf_span.and_then(|span| span.parent());
}
if let Some(span) = leaf_span {
for span in span.scope().from_root() {
let location = match self
.span_locations
.read()
.get(&span.id())
.and_then(|location| location.as_ref())
{
Some(location) => location.to_string(),
None => "unknown".to_string(),
};
write!(stack_str, "; {}", location).expect("writing to `String` should never fail");
}
}
write!(stack_str, " {}", delta.as_micros()).expect("writing to `String` should never fail");
stack_str
}
fn time_since_last_event(&self) -> Duration {
let now = Instant::now();
let last_event = LAST_EVENT.with(|time| {
let last_event = time.get();
time.set(now);
last_event
});
now - last_event
}
}
impl<S> Layer<S> for FlamegraphLayer
where
S: Subscriber + for<'a> LookupSpan<'a>,
{
fn register_callsite(&self, metadata: &'static Metadata<'static>) -> subscriber::Interest {
match (metadata.name(), metadata.target()) {
("runtime.spawn", _) | ("task", "tokio::task") | (_, "trace_tools::observe") => {
self.callsites.write().insert(metadata.callsite());
}
(_, _) => {}
}
subscriber::Interest::always()
}
fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, _ctx: Context<'_, S>) {
if self.is_tracked_callsite(&attrs.metadata().callsite()) {
let location = SpanLocation::from_attributes(attrs);
self.span_locations.write().insert(id.clone(), location);
}
}
fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) {
if self.is_tracked(id, &ctx) {
let stack_str = self.stack_string_on_enter(id, &ctx);
let _ = writeln!(*self.out_file.write(), "{}", stack_str);
}
}
fn on_exit(&self, id: &span::Id, ctx: Context<'_, S>) {
if self.is_tracked(id, &ctx) {
let stack_str = self.stack_string_on_exit(id, &ctx);
let _ = writeln!(*self.out_file.write(), "{}", stack_str);
}
}
fn on_close(&self, id: span::Id, ctx: Context<'_, S>) {
if self.is_tracked(&id, &ctx) {
let _ = self.span_locations.write().remove(&id);
}
}
}
struct SpanLocation {
file: String,
line: u32,
}
impl SpanLocation {
fn from_attributes(attrs: &span::Attributes) -> Option<Self> {
let mut visitor = LocationVisitor::new();
attrs.record(&mut visitor);
visitor.try_into().ok()
}
}
impl Display for SpanLocation {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}:{}", self.file, self.line)
}
}
impl TryFrom<LocationVisitor> for SpanLocation {
type Error = ();
fn try_from(visitor: LocationVisitor) -> Result<Self, Self::Error> {
let LocationVisitor { file, line } = visitor;
file.zip(line)
.map(|(file, line)| SpanLocation { file, line })
.ok_or(())
}
}