Class: SpanImpl
Primary implementation of the Span
interface. See Span for full details on each method.
We suggest using one of the various traced
methods, instead of creating Spans directly. See Span.startSpan for full details.
Implements
Accessors
id
• get
id(): string
Row ID of the span.
Returns
string
Implementation of
Constructors
constructor
• new SpanImpl(args
): SpanImpl
Parameters
Name | Type |
---|---|
args | { defaultRootType? : "function" | "llm" | "tool" | "task" | "score" | "eval" ; parentComputeObjectMetadataArgs : undefined | Record <string , any > ; parentObjectId : LazyValue <string > ; parentObjectType : SpanObjectTypeV3 ; parentSpanIds : undefined | ParentSpanIds ; state : BraintrustState } & Omit <StartSpanArgs , "parent" > |
Returns
Methods
close
▸ close(args?
): number
Alias for end
.
Parameters
Name | Type |
---|---|
args? | EndSpanArgs |
Returns
number
Implementation of
end
▸ end(args?
): number
Log an end time to the span (defaults to the current time). Returns the logged time.
Will be invoked automatically if the span is constructed with traced
.
Parameters
Name | Type |
---|---|
args? | EndSpanArgs |
Returns
number
The end time logged to the span metrics.
Implementation of
export
▸ export(): Promise
<string
>
Serialize the identifiers of this span. The return value can be used to
identify this span when starting a subspan elsewhere, such as another
process or service, without needing to access this Span
object. See the
parameters of Span.startSpan for usage details.
Callers should treat the return value as opaque. The serialization format
may change from time to time. If parsing is needed, use
SpanComponentsV3.fromStr
.
Returns
Promise
<string
>
Serialized representation of this span's identifiers.
Implementation of
flush
▸ flush(): Promise
<void
>
Flush any pending rows to the server.
Returns
Promise
<void
>
Implementation of
log
▸ log(event
): void
Incrementally update the current span with new data. The event will be batched and uploaded behind the scenes.
Parameters
Name | Type |
---|---|
event | ExperimentLogPartialArgs |
Returns
void
Implementation of
logFeedback
▸ logFeedback(event
): void
Add feedback to the current span. Unlike Experiment.logFeedback
and Logger.logFeedback
, this method does not accept an id parameter, because it logs feedback to the current span.
Parameters
Name | Type |
---|---|
event | Omit <LogFeedbackFullArgs , "id" > |
Returns
void
Implementation of
permalink
▸ permalink(): Promise
<string
>
Format a permalink to the Braintrust application for viewing this span.
Links can be generated at any time, but they will only become viewable after the span and its root have been flushed to the server and ingested.
Returns
Promise
<string
>
A permalink to the span.
Implementation of
setAttributes
▸ setAttributes(args
): void
Set the span's name, type, or other attributes after it's created.
Parameters
Name | Type |
---|---|
args | Omit <StartSpanArgs , "event" > |
Returns
void
Implementation of
startSpan
▸ startSpan(args?
): Span
Lower-level alternative to traced
. This allows you to start a span yourself, and can be useful in situations
where you cannot use callbacks. However, spans started with startSpan
will not be marked as the "current span",
so currentSpan()
and traced()
will be no-ops. If you want to mark a span as current, use traced
instead.
See Span.traced for full details.
Parameters
Name | Type |
---|---|
args? | StartSpanArgs |
Returns
The newly-created Span
Implementation of
traced
▸ traced<R
>(callback
, args?
): R
Create a new span and run the provided callback. This is useful if you want to log more detailed trace information beyond the scope of a single log event. Data logged over several calls to Span.log
will be merged into one logical row.
Spans created within traced
are ended automatically. By default, the span is marked as current, so they can be accessed using braintrust.currentSpan
.
Type parameters
Name |
---|
R |
Parameters
Name | Type | Description |
---|---|---|
callback | (span : Span ) => R | The function to be run under the span context. |
args? | StartSpanArgs & SetCurrentArg | - |
Returns
R
The result of running callback
.
Implementation of
Properties
kind
• kind: "span"