Record
span-data
The data associated with a span.
record span-data {
span-context: span-context,
parent-span-id: string,
span-kind: span-kind,
name: string,
start-time: datetime,
end-time: datetime,
attributes: list<key-value>,
events: list<event>,
links: list<link>,
status: status,
instrumentation-scope: instrumentation-scope,
dropped-attributes: u32,
dropped-events: u32,
dropped-links: u32,
}Fields
| Name | Type | Description |
|---|---|---|
| span-context | span-context | Span context. |
| parent-span-id | string | Span parent id. |
| span-kind | span-kind | Span kind. |
| name | string | Span name. |
| start-time | datetime | Span start time. |
| end-time | datetime | Span end time. |
| attributes | list<key-value> | Span attributes. |
| events | list<event> | Span events. |
| links | list<link> | Span Links. |
| status | status | Span status. |
| instrumentation-scope | instrumentation-scope | Instrumentation scope that produced this span. |
| dropped-attributes | u32 | Number of attributes dropped by the span due to limits being reached. |
| dropped-events | u32 | Number of events dropped by the span due to limits being reached. |
| dropped-links | u32 | Number of links dropped by the span due to limits being reached. |