-
Notifications
You must be signed in to change notification settings - Fork 20
Common trace state for tracing #787
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
Merged
Merged
Changes from 15 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
802ad73
Common trace state
OStevan b7445f4
Common trace state
OStevan 935d5dc
Common trace state is serializable
OStevan 82eb6a7
Common trace state is truly serializable
OStevan 2b42fe6
Rename create to off
OStevan 46e9436
Nullable
OStevan b6db66a
Better trace state to string
OStevan eb3e667
Allow nullable
OStevan fa6cbc3
Comments
OStevan bc9190e
To string changes
OStevan e957c16
Small docs change
OStevan 8d5723f
Change to string
OStevan 51b057d
Justification for ser/de break
OStevan 5d7f151
Reuse existing
OStevan c5a4aa7
Reuse existing
OStevan 705e73b
Last comment
OStevan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 73 additions & 0 deletions
73
tracing/src/main/java/com/palantir/tracing/TraceState.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| /* | ||
| * (c) Copyright 2021 Palantir Technologies Inc. All rights reserved. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package com.palantir.tracing; | ||
|
|
||
| import static com.palantir.logsafe.Preconditions.checkArgument; | ||
| import static com.palantir.logsafe.Preconditions.checkNotNull; | ||
|
|
||
| import com.google.common.base.Strings; | ||
| import java.io.Serializable; | ||
| import java.util.Optional; | ||
| import javax.annotation.Nullable; | ||
|
|
||
| /** | ||
| * Class representing the state which is created for each {@link Trace}. Contains the globally non-unique identifier of | ||
| * a trace and a request identifier used to identify different requests sent from the same trace. | ||
| */ | ||
| final class TraceState implements Serializable { | ||
| private static final long serialVersionUID = 1L; | ||
|
|
||
| private final String traceId; | ||
|
|
||
| @Nullable | ||
| private final String requestId; | ||
|
|
||
| static TraceState of(String traceId, Optional<String> requestId) { | ||
| checkArgument(!Strings.isNullOrEmpty(traceId), "traceId must be non-empty"); | ||
| checkNotNull(requestId, "requestId should be not-null"); | ||
| return new TraceState(traceId, requestId.orElse(null)); | ||
| } | ||
|
|
||
| private TraceState(String traceId, @Nullable String requestId) { | ||
| this.traceId = traceId; | ||
| this.requestId = requestId; | ||
| } | ||
|
|
||
| /** | ||
| * The globally unique non-empty identifier for this call trace. | ||
| * */ | ||
| String traceId() { | ||
| return traceId; | ||
| } | ||
|
|
||
| /** | ||
| * 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. | ||
| */ | ||
| @Nullable | ||
| String requestId() { | ||
| return requestId; | ||
| } | ||
|
|
||
| @Override | ||
| public String toString() { | ||
| return "TraceState{traceId='" + traceId + "', requestId='" + requestId + "'}"; | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.