-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the SDK into its own Go module (#985)
* Remove otel/sdk dependency from grpctrace Use otel/trace/testtrace instead and cleanup testing code. * Update httptrace to not depend on the SDK Update testing to use api/trace/testtrace instead. * Add changes to Changelog * Make the SDK its own Go module * Upgrade go.mod to 1.14 project wide * go mod tidy
- Loading branch information
Showing
31 changed files
with
214 additions
and
81 deletions.
There are no files selected for viewing
This file contains 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 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 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,16 +1,18 @@ | ||
module go.opentelemetry.io/otel/example/grpc | ||
|
||
go 1.13 | ||
go 1.14 | ||
|
||
replace ( | ||
go.opentelemetry.io/otel => ../.. | ||
go.opentelemetry.io/otel/exporters/stdout => ../../exporters/stdout | ||
go.opentelemetry.io/otel/sdk => ../../sdk | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.4.2 | ||
go.opentelemetry.io/otel v0.9.0 | ||
go.opentelemetry.io/otel/exporters/stdout v0.9.0 | ||
go.opentelemetry.io/otel/sdk v0.9.0 | ||
golang.org/x/net v0.0.0-20190613194153-d28f0bde5980 | ||
google.golang.org/grpc v1.30.0 | ||
) |
This file contains 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 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,15 @@ | ||
module go.opentelemetry.io/otel/example/http | ||
|
||
go 1.13 | ||
go 1.14 | ||
|
||
replace ( | ||
go.opentelemetry.io/otel => ../.. | ||
go.opentelemetry.io/otel/exporters/stdout => ../../exporters/stdout | ||
go.opentelemetry.io/otel/sdk => ../../sdk | ||
) | ||
|
||
require ( | ||
go.opentelemetry.io/otel v0.9.0 | ||
go.opentelemetry.io/otel/exporters/stdout v0.9.0 | ||
go.opentelemetry.io/otel/sdk v0.9.0 | ||
) |
This file contains 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 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,15 @@ | ||
module go.opentelemetry.io/otel/example/jaeger | ||
|
||
go 1.13 | ||
go 1.14 | ||
|
||
replace ( | ||
go.opentelemetry.io/otel => ../.. | ||
go.opentelemetry.io/otel/exporters/trace/jaeger => ../../exporters/trace/jaeger | ||
go.opentelemetry.io/otel/sdk => ../../sdk | ||
) | ||
|
||
require ( | ||
go.opentelemetry.io/otel v0.9.0 | ||
go.opentelemetry.io/otel/exporters/trace/jaeger v0.9.0 | ||
go.opentelemetry.io/otel/sdk v0.9.0 | ||
) |
This file contains 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 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,15 @@ | ||
module go.opentelemetry.io/otel/example/namedtracer | ||
|
||
go 1.13 | ||
go 1.14 | ||
|
||
replace ( | ||
go.opentelemetry.io/otel => ../.. | ||
go.opentelemetry.io/otel/exporters/stdout => ../../exporters/stdout | ||
go.opentelemetry.io/otel/sdk => ../../sdk | ||
) | ||
|
||
require ( | ||
go.opentelemetry.io/otel v0.9.0 | ||
go.opentelemetry.io/otel/exporters/stdout v0.9.0 | ||
go.opentelemetry.io/otel/sdk v0.9.0 | ||
) |
This file contains 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 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 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 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 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 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,15 @@ | ||
module go.opentelemetry.go/otel/example/zipkin | ||
|
||
go 1.13 | ||
go 1.14 | ||
|
||
replace ( | ||
go.opentelemetry.io/otel => ../.. | ||
go.opentelemetry.io/otel/exporters/trace/zipkin => ../../exporters/trace/zipkin | ||
go.opentelemetry.io/otel/sdk => ../../sdk | ||
) | ||
|
||
require ( | ||
go.opentelemetry.io/otel v0.9.0 | ||
go.opentelemetry.io/otel/exporters/trace/zipkin v0.9.0 | ||
go.opentelemetry.io/otel/sdk v0.9.0 | ||
) |
This file contains 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 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,11 +1,15 @@ | ||
module go.opentelemetry.io/otel/exporters/metric/prometheus | ||
|
||
go 1.13 | ||
go 1.14 | ||
|
||
replace go.opentelemetry.io/otel => ../../.. | ||
replace ( | ||
go.opentelemetry.io/otel => ../../.. | ||
go.opentelemetry.io/otel/sdk => ../../../sdk | ||
) | ||
|
||
require ( | ||
github.com/prometheus/client_golang v1.7.1 | ||
github.com/stretchr/testify v1.6.1 | ||
go.opentelemetry.io/otel v0.9.0 | ||
go.opentelemetry.io/otel/sdk v0.9.0 | ||
) |
This file contains 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
Oops, something went wrong.