Span types
BaseSpan #
Bases: BaseModel
Base data class representing a span.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id_
|
str
|
Id of span. |
'b064e141-d82e-4f07-ab77-2116001f7f99'
|
parent_id
|
str | None
|
Id of parent span. |
None
|
tags
|
Dict[str, Any]
|
|
{}
|
Source code in llama_index_instrumentation/span/base.py
7 8 9 10 11 12 13 |
|