Skip to content

Commit

Permalink
[pinpoint-apm#4558] Change the span data type for c++ compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
emeroad committed Jul 2, 2019
1 parent 111d702 commit 15bf609
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions grpc/src/main/proto/Span.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ message PSpan {

PTransactionId transactionId = 2;

fixed64 spanId = 3;
fixed64 parentSpanId = 4;
sfixed64 spanId = 3;
sfixed64 parentSpanId = 4;

// span event's startTimestamp
int64 startTime = 5;
Expand Down Expand Up @@ -97,7 +97,7 @@ message PNextEvent {
}

message PMessageEvent {
fixed64 nextSpanId = 1;
sfixed64 nextSpanId = 1;
string endPoint = 2;
string destinationId = 3;
}
Expand All @@ -107,7 +107,7 @@ message PSpanChunk {

PTransactionId transactionId = 2;

fixed64 spanId = 3;
sfixed64 spanId = 3;

string endPoint = 4;

Expand Down

0 comments on commit 15bf609

Please sign in to comment.