Skip to content

Commit 694dae2

Browse files
authored
feat(spans): rm is_remote (#454)
1 parent eea2ae7 commit 694dae2

File tree

5 files changed

+2
-116
lines changed

5 files changed

+2
-116
lines changed

examples/buffered-segments/1/basic_buffered_segment.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
}
7676
},
7777
"end_timestamp": 1759215782.849409,
78-
"is_remote": false,
7978
"links": [
8079
{
8180
"trace_id": "0f62a8b040f340bda5d830223def1d82",

examples/ingest-spans/1/null_fields.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"downsampled_retention_days": 90,
99
"attributes": null,
1010
"end_timestamp": 1759215782.849409,
11-
"is_remote": null,
11+
"is_segment": null,
1212
"links": null,
1313
"name": null,
1414
"parent_span_id": null,

examples/ingest-spans/1/span_with_is_remote.json

Lines changed: 0 additions & 110 deletions
This file was deleted.

rust/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ mod tests {
369369
}
370370

371371
let Err(SchemaError::InvalidMessage(ValidationError::SchemaViolation(message))) =
372-
schema.validate_json(br#"{"is_remote": null}"#)
372+
schema.validate_json(br#"{"is_segment": null}"#)
373373
else {
374374
panic!();
375375
};

schemas/ingest-spans.v1.schema.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,6 @@
5656
"status": {
5757
"type": "string"
5858
},
59-
"is_remote": {
60-
"type": ["boolean", "null"]
61-
},
6259
"is_segment": {
6360
"type": ["boolean", "null"]
6461
},

0 commit comments

Comments
 (0)