Open ggiill opened 1 year ago
This is helpful for "retroactive" traces/spans, where a completion event is emitted with a duration.
An example is Oban, which emits :stop and :exception telemetry events with :duration as a measure.
:stop
:exception
:duration
measure
We can use that duration to calculate and set the :start time (with now being the :completion_time).
:start
:completion_time
This is helpful for "retroactive" traces/spans, where a completion event is emitted with a duration.
An example is Oban, which emits
:stop
and:exception
telemetry events with:duration
as ameasure
.We can use that duration to calculate and set the
:start
time (with now being the:completion_time
).