Skip to content

Commit e8b7e23

Browse files
committed
ref(develop/spans): Replace is_remote with is_segment in Span Protocol
1 parent 994c231 commit e8b7e23

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

develop-docs/sdk/telemetry/spans/span-protocol.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The envelope item payload must contain an `items` array with span one and up to
5252
"span_id": "438f40bd3b4a41ee",
5353
"name": "GET /users",
5454
"status": "ok",
55-
"is_remote": true,
55+
"is_segment": true,
5656
"kind": "server",
5757
"start_timestamp": 1742921669.158209,
5858
"end_timestamp": 1742921669.180536,
@@ -114,7 +114,7 @@ The envelope item payload must contain an `items` array with span one and up to
114114
"span_id": "f1196292f76e45c0",
115115
"name": "app.handle",
116116
"status": "ok",
117-
"is_remote": false,
117+
"is_false": false,
118118
"kind": "server",
119119
"start_timestamp": 1742921669.178306,
120120
"end_timestamp": 1742921669.180484,
@@ -148,7 +148,7 @@ The envelope item payload must contain an `items` array with span one and up to
148148
| `parent_span_id` | string | No | 16-character hexadecimal string (a valid uuid4 without dashes) |
149149
| `name` | string | Yes | A low cardinality description of what the span represents (e.g., "GET /users", "database.query") |
150150
| `status` | string | Yes | Status of the span operation. Either `"ok"` or `"error"` |
151-
| `is_remote` | boolean | Yes | Whether the SpanContext creating the span was received from somewhere else or locally generated |
151+
| `is_sgement` | boolean | Yes | Whether the span is a segment span |
152152
| `kind` | string | Yes | The kind of span. Values: `"server"`, `"client"`, `"producer"`, `"consumer"`, `"internal"` |
153153
| `start_timestamp` | number | Yes | Unix timestamp (with fractional microseconds) when the span was started |
154154
| `end_timestamp` | number | Yes | Unix timestamp (with fractional microseconds) when the span was ended |

0 commit comments

Comments
 (0)