Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
describe request ID
  • Loading branch information
carterkozak committed Jul 14, 2020
commit 11b90ab5eb8e1c8c1a278bb66f3ea6c6801c5ba7
8 changes: 7 additions & 1 deletion tracing/src/main/java/com/palantir/tracing/Trace.java
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,13 @@ final String getTraceId() {
return traceId;
}

/** The request identifier of this trace. */
/**
* The request identifier of this trace.
*
* The request identifier is an implementation detail of this tracing library. A new identifier is generated
* each time a new trace is created with a SERVER_INCOMING root span. This is a convenience in order to
* distinguish between requests with the same traceId.
*/
final Optional<String> getRequestId() {
return requestId;
}
Expand Down