Skip to content

Commit

Permalink
pinpoint-apm#8 support Node Language long type
Browse files Browse the repository at this point in the history
  • Loading branch information
feelform committed Aug 11, 2021
1 parent 2b3f8ea commit e831309
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions proto/v1/Span.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ message PSpan {

PTransactionId transactionId = 2;

sfixed64 spanId = 3;
sfixed64 parentSpanId = 4;
sfixed64 spanId = 3 [jstype = JS_STRING];
sfixed64 parentSpanId = 4 [jstype = JS_STRING];

// span event's startTimestamp
int64 startTime = 5;
Expand All @@ -50,8 +50,8 @@ message PSpan {
message PTransactionId {
// identical to agentId if null
string agentId = 1; //nullable
int64 agentStartTime = 2;
int64 sequence = 3;
int64 agentStartTime = 2 [jstype = JS_STRING];
int64 sequence = 3 [jstype = JS_STRING];
}

message PAcceptEvent {
Expand Down Expand Up @@ -108,7 +108,7 @@ message PSpanChunk {

PTransactionId transactionId = 2;

sfixed64 spanId = 3;
sfixed64 spanId = 3 [jstype = JS_STRING];

string endPoint = 4;

Expand Down

0 comments on commit e831309

Please sign in to comment.