├── .github ├── ISSUE_TEMPLATE.md ├── dependabot.yml └── workflows │ └── go.yml ├── .gitignore ├── .golangci.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── ext.go ├── ext ├── field.go ├── field_test.go ├── tags.go └── tags_test.go ├── globaltracer.go ├── globaltracer_test.go ├── go.mod ├── go.sum ├── gocontext.go ├── gocontext_test.go ├── harness ├── api_checkers.go └── noop_api_test.go ├── log ├── field.go ├── field_test.go ├── util.go └── util_test.go ├── mocktracer ├── mocklogrecord.go ├── mockspan.go ├── mocktracer.go ├── mocktracer_test.go └── propagation.go ├── noop.go ├── options_test.go ├── propagation.go ├── propagation_test.go ├── span.go ├── testtracer_test.go └── tracer.go /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/README.md -------------------------------------------------------------------------------- /ext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/ext.go -------------------------------------------------------------------------------- /ext/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/ext/field.go -------------------------------------------------------------------------------- /ext/field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/ext/field_test.go -------------------------------------------------------------------------------- /ext/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/ext/tags.go -------------------------------------------------------------------------------- /ext/tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/ext/tags_test.go -------------------------------------------------------------------------------- /globaltracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/globaltracer.go -------------------------------------------------------------------------------- /globaltracer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/globaltracer_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/go.sum -------------------------------------------------------------------------------- /gocontext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/gocontext.go -------------------------------------------------------------------------------- /gocontext_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/gocontext_test.go -------------------------------------------------------------------------------- /harness/api_checkers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/harness/api_checkers.go -------------------------------------------------------------------------------- /harness/noop_api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/harness/noop_api_test.go -------------------------------------------------------------------------------- /log/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/log/field.go -------------------------------------------------------------------------------- /log/field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/log/field_test.go -------------------------------------------------------------------------------- /log/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/log/util.go -------------------------------------------------------------------------------- /log/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/log/util_test.go -------------------------------------------------------------------------------- /mocktracer/mocklogrecord.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/mocktracer/mocklogrecord.go -------------------------------------------------------------------------------- /mocktracer/mockspan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/mocktracer/mockspan.go -------------------------------------------------------------------------------- /mocktracer/mocktracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/mocktracer/mocktracer.go -------------------------------------------------------------------------------- /mocktracer/mocktracer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/mocktracer/mocktracer_test.go -------------------------------------------------------------------------------- /mocktracer/propagation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/mocktracer/propagation.go -------------------------------------------------------------------------------- /noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/noop.go -------------------------------------------------------------------------------- /options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/options_test.go -------------------------------------------------------------------------------- /propagation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/propagation.go -------------------------------------------------------------------------------- /propagation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/propagation_test.go -------------------------------------------------------------------------------- /span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/span.go -------------------------------------------------------------------------------- /testtracer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/testtracer_test.go -------------------------------------------------------------------------------- /tracer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentracing/opentracing-go/HEAD/tracer.go --------------------------------------------------------------------------------