dragon.ai.agent.observability.tracer.TracingProcessor
- class TracingProcessor[source]
Bases:
objectAbstract base for trace backends.
Subclasses must implement both methods. Each method receives a
Spaninstance and should handle it synchronously (the caller awaits if needed).- __init__()
Methods
__init__()on_span_end(span)Called when a span ends (
end_timeis set).on_span_start(span)Called when a span starts (
end_timeisNone).