Skip to content

Commit 37ca738

Browse files
committed
Add block and transient attributes to trace.
1 parent fa530b3 commit 37ca738

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

lib/traces/provider/async/task.rb

+6-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,16 @@ def schedule(&block)
1212
trace_context = Traces.trace_context
1313
end
1414

15+
attributes = {
16+
"block" => block,
17+
"transient" => self.transient?,
18+
}
19+
1520
super do
1621
Traces.trace_context = trace_context
1722

1823
if annotation = self.annotation
19-
attributes = {
20-
"annotation" => annotation
21-
}
24+
attributes["annotation"] = annotation
2225
end
2326

2427
Traces.trace("async.task", attributes: attributes) do

0 commit comments

Comments
 (0)