Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#8] Support Pinpoint Node agent long type #12

Merged
merged 1 commit into from
Aug 12, 2021
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
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