-
Notifications
You must be signed in to change notification settings - Fork 0
Add support for otel spans #11
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
Closed
Closed
Changes from 13 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
17fe706
Add support for otel spans
rahulpr22 2876669
Add support for otel spans
rahulpr22 9e46314
update deps
rahulpr22 90b2b14
update deps
rahulpr22 80b0f2c
fix go version format
rahulpr22 d136901
Fix OTEL parent extraction for gRPC server spans.
rahulpr22 7fda985
remove toolchain
rahulpr22 cf31409
remove toolchain
rahulpr22 12e0e1c
update go version for ci
rahulpr22 c20a2d3
update go doc
rahulpr22 345d9b7
address nit pick
rahulbharadwaj-hue fc70731
abstract out oTel methods
rahulbharadwaj-hue a827856
go doc
rahulbharadwaj-hue 5b21c35
address review comments
rahulpr22 eee6248
go doc
rahulpr22 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,25 @@ | ||
| module github.com/go-coldbrew/tracing | ||
|
|
||
| go 1.15 | ||
| go 1.24.2 | ||
|
|
||
| require ( | ||
| github.com/kr/text v0.2.0 // indirect | ||
| github.com/newrelic/go-agent/v3 v3.33.0 | ||
| github.com/opentracing/opentracing-go v1.2.0 | ||
| golang.org/x/net v0.26.0 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117 // indirect | ||
| google.golang.org/grpc v1.64.0 | ||
| gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
| go.opentelemetry.io/otel v1.38.0 | ||
| go.opentelemetry.io/otel/trace v1.38.0 | ||
| google.golang.org/grpc v1.76.0 | ||
| ) | ||
|
|
||
| require ( | ||
| github.com/go-logr/logr v1.4.3 // indirect | ||
| github.com/go-logr/stdr v1.2.2 // indirect | ||
| github.com/golang/protobuf v1.5.4 // indirect | ||
| go.opentelemetry.io/auto/sdk v1.1.0 // indirect | ||
| go.opentelemetry.io/otel/metric v1.38.0 // indirect | ||
| go.opentelemetry.io/otel/sdk/metric v1.38.0 // indirect | ||
| golang.org/x/net v0.43.0 // indirect | ||
| golang.org/x/sys v0.35.0 // indirect | ||
| golang.org/x/text v0.28.0 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20250825161204-c5933d9347a5 // indirect | ||
| google.golang.org/protobuf v1.36.8 // indirect | ||
| ) | ||
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.