1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2024-12-04 09:43:23 +02:00
opentelemetry-go/go.mod
Krzesimir Nowak 339ca2d974 Initial opentracing bridge (#98)
* Allow specifying custom timestamps for events

Adding event with timestamp is not yet a part of the OpenTelemetry
specification, but this function will come in handy when implementing
the OpenTracing bridge.

* Add opentracing bridge, wrapper tracer and migration interfaces

There are some features missing - setting up links and span kind;
context propagation will only work between two OpenTracing bridges.

* Add some tests for the opentracing bridge

The tests mostly check various aspects of the cooperation between
OpenTracing and OpenTelemetry APIs.
2019-09-24 23:12:22 -07:00

16 lines
428 B
Modula-2

module go.opentelemetry.io
go 1.13
require (
github.com/apache/thrift v0.12.0
github.com/client9/misspell v0.3.4
github.com/golangci/golangci-lint v1.18.0
github.com/google/go-cmp v0.3.0
github.com/hashicorp/golang-lru v0.5.3
github.com/opentracing/opentracing-go v1.1.1-0.20190913142402-a7454ce5950e
golang.org/x/tools v0.0.0-20190920225731-5eefd052ad72
google.golang.org/api v0.9.0
google.golang.org/grpc v1.22.1
)