Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions develop-docs/sdk/telemetry/spans/span-protocol.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ The envelope item payload must contain an `items` array with span one and up to
"name": "GET /users",
"status": "ok",
"is_segment": true,
"kind": "server",
"start_timestamp": 1742921669.158209,
"end_timestamp": 1742921669.180536,
"attributes": {
Expand Down Expand Up @@ -115,7 +114,6 @@ The envelope item payload must contain an `items` array with span one and up to
"name": "app.handle",
"status": "ok",
"is_segment": false,
"kind": "server",
"start_timestamp": 1742921669.178306,
"end_timestamp": 1742921669.180484,
"attributes": {
Expand Down Expand Up @@ -149,7 +147,6 @@ The envelope item payload must contain an `items` array with span one and up to
| `name` | string | Yes | A low cardinality description of what the span represents (e.g., "GET /users", "database.query") |
| `status` | string | Yes | Status of the span operation. Either `"ok"` or `"error"` |
| `is_segment` | boolean | Yes | Whether the span is a segment span |
| `kind` | string | Yes | The kind of span. Values: `"server"`, `"client"`, `"producer"`, `"consumer"`, `"internal"` |
| `start_timestamp` | number | Yes | Unix timestamp (with fractional microseconds) when the span was started |
| `end_timestamp` | number | Yes | Unix timestamp (with fractional microseconds) when the span was ended |
| `attributes` | object | No | Key-value pairs containing additional metadata about the span |
Expand Down
Loading