Skip to content

Commit

Permalink
release: version 0.7.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-mwangi committed Feb 17, 2023
1 parent e032f12 commit 9189420
Show file tree
Hide file tree
Showing 12 changed files with 4,897 additions and 571 deletions.
2 changes: 1 addition & 1 deletion _examples/grpc-client/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ replace github.com/Traceableai/goagent => ../../

require (
github.com/Traceableai/goagent v0.0.0-00010101000000-000000000000
google.golang.org/grpc v1.49.0
google.golang.org/grpc v1.52.3
)
779 changes: 699 additions & 80 deletions _examples/grpc-client/go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _examples/grpc-server/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ replace github.com/Traceableai/goagent => ../../

require (
github.com/Traceableai/goagent v0.0.0-00010101000000-000000000000
google.golang.org/grpc v1.49.0
google.golang.org/grpc v1.52.3
)
779 changes: 699 additions & 80 deletions _examples/grpc-server/go.sum

Large diffs are not rendered by default.

771 changes: 694 additions & 77 deletions _examples/http-client/go.sum

Large diffs are not rendered by default.

771 changes: 694 additions & 77 deletions _examples/http-server/go.sum

Large diffs are not rendered by default.

771 changes: 694 additions & 77 deletions _examples/mux-server/go.sum

Large diffs are not rendered by default.

771 changes: 694 additions & 77 deletions _tests/go.sum

Large diffs are not rendered by default.

16 changes: 9 additions & 7 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@ func PropagationFormats(formats ...hyperconfig.PropagationFormat) []hyperconfig.
}

var (
Bool = traceableconfig.Bool
String = traceableconfig.String
Int32 = traceableconfig.Int32
TraceReporterType_OTLP = hyperconfig.TraceReporterType_OTLP
TraceReporterType_ZIPKIN = hyperconfig.TraceReporterType_ZIPKIN
PropagationFormat_B3 = hyperconfig.PropagationFormat_B3
PropagationFormat_TRACECONTEXT = hyperconfig.PropagationFormat_TRACECONTEXT
Bool = traceableconfig.Bool
String = traceableconfig.String
Int32 = traceableconfig.Int32
TraceReporterType_OTLP = hyperconfig.TraceReporterType_OTLP
TraceReporterType_ZIPKIN = hyperconfig.TraceReporterType_ZIPKIN
PropagationFormat_B3 = hyperconfig.PropagationFormat_B3
PropagationFormat_TRACECONTEXT = hyperconfig.PropagationFormat_TRACECONTEXT
MetricReporterType_METRIC_REPORTER_TYPE_LOGGING = hyperconfig.MetricReporterType_METRIC_REPORTER_TYPE_LOGGING
MetricReporterType_METRIC_REPORTER_TYPE_OTLP = hyperconfig.MetricReporterType_METRIC_REPORTER_TYPE_OTLP
)
19 changes: 9 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,21 @@ go 1.15

require (
github.com/Traceableai/agent-config/gen/go v0.0.0-20220804040331-6fb575c0338e
github.com/benbjohnson/clock v1.3.0 // indirect
github.com/gin-gonic/gin v1.8.1
github.com/gorilla/mux v1.8.0
github.com/hypertrace/agent-config/gen/go v0.0.0-20230126205246-bd4d81e696a6
github.com/hypertrace/goagent v0.12.0
github.com/pkg/errors v0.9.1 // indirect
github.com/hypertrace/goagent v0.13.0
github.com/stretchr/testify v1.8.1
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.35.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.35.0
go.opentelemetry.io/contrib/propagators/b3 v1.10.0
go.opentelemetry.io/otel v1.10.0
go.opentelemetry.io/otel/sdk v1.10.0
go.opentelemetry.io/otel/trace v1.10.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.39.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.39.0
go.opentelemetry.io/contrib/propagators/b3 v1.13.0
go.opentelemetry.io/otel v1.13.0
go.opentelemetry.io/otel/sdk v1.13.0
go.opentelemetry.io/otel/trace v1.13.0
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
go.uber.org/zap v1.19.1
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
google.golang.org/grpc v1.49.0
google.golang.org/grpc v1.52.3
google.golang.org/protobuf v1.28.1
)
785 changes: 702 additions & 83 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion version/version.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9189420

Please sign in to comment.