1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2024-12-04 09:43:23 +02:00
OpenTelemetry Go API and SDK https://opentelemetry.io/
Go to file
Krzesimir Nowak a936b8fb00 Add some docs about useful step before filing a PR (#151)
* Add a document about contributing

It is shamelessly stolen from opentelemetry-python and edited to be
relevant to opentelemetry-go. This file should explain some less
obvious things about the development of the project, like running
linters and regenerating the files.

* Force the use of go modules

Until go 1.13 modules were disabled by default if the repository was
inside GOPATH. This was causing issues when running `make precommit`
for the first time, as it could not find sources for any of the tools
used in `make precommit` under `${GOPATH}/src`. With setting the
`GO111MODULE` environment variable to `on`, we tell `go` to behave
differently, just like go 1.13 does by default.
2019-10-01 09:16:45 -07:00
.circleci Add Circle ci (#41) 2019-07-02 16:21:24 -07:00
api rename finish to end (#150) 2019-09-27 10:48:10 -07:00
example Add stdout trace exporter (#153) 2019-09-28 11:27:02 -07:00
experimental rename finish to end (#150) 2019-09-27 10:48:10 -07:00
exporter/trace Add stdout trace exporter (#153) 2019-09-28 11:27:02 -07:00
internal/trace rename finish to end (#150) 2019-09-27 10:48:10 -07:00
plugin/httptrace rename finish to end (#150) 2019-09-27 10:48:10 -07:00
propagation change TraceOptions to TraceFlags. (#144) 2019-09-25 14:37:36 -07:00
sdk rename finish to end (#150) 2019-09-27 10:48:10 -07:00
.gitignore Remove experimental/streaming globals, add streaming example (#135) 2019-09-23 14:39:10 -07:00
.golangci.yml Add vanity import name (#107) 2019-08-26 09:41:15 -07:00
CODEOWNERS Add jmacd as a code owner (#42) 2019-07-02 14:03:36 -07:00
CONTRIBUTING.md Add some docs about useful step before filing a PR (#151) 2019-10-01 09:16:45 -07:00
go.mod Initial opentracing bridge (#98) 2019-09-24 23:12:22 -07:00
go.sum Initial opentracing bridge (#98) 2019-09-24 23:12:22 -07:00
LICENSE Initial commit 2019-05-16 12:05:27 -07:00
Makefile Add some docs about useful step before filing a PR (#151) 2019-10-01 09:16:45 -07:00
README.md Add some docs about useful step before filing a PR (#151) 2019-10-01 09:16:45 -07:00
tools.go Run go generate during make and make sure that generated files are in sync in CI (#101) 2019-08-22 11:16:51 -07:00

OpenTelemetry-Go

Circle CI Docs Go Report Card

The Go OpenTelemetry client.

Contributing

See the contributing file.

TODO

TODO

Experimental streaming SDK

The experimental/streaming directory contains an experimental SDK that supports a low-level exporter.

go run experimental/streaming/example/basic/main.go