9907328c5b
* Export coverage report to codecov Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com> * Use orb and individual coverage files per module * Run go cover inside module directory to account for local rewrites Still try to upload using a single file, since orb docs seem to indicate if you have more than one file, you're going to need to run the orb multiple times. * Use correct filename * Don't do anything silly like appending a file to itself * Handle subtle differences between FreeBSD and Linux * Ignore opentelemetry-proto-gen files in exporters/otlp/internal * Does codecov orb leave current directory in a bad state? * Copy instead of move * Ignore generated protobuf code in jaeger exporter module Co-authored-by: Evan Torrie <evantorrie@users.noreply.github.com> Co-authored-by: Anthony Mirabella <a9@aneurysm9.com> Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com> |
||
---|---|---|
.circleci | ||
.github | ||
api | ||
bridge/opentracing | ||
codes | ||
example | ||
exporters | ||
internal | ||
label | ||
sdk | ||
semconv | ||
tools | ||
.gitignore | ||
.gitmodules | ||
.golangci.yml | ||
CHANGELOG.md | ||
CODEOWNERS | ||
CONTRIBUTING.md | ||
doc.go | ||
error_handler.go | ||
get_main_pkgs.sh | ||
go.mod | ||
go.sum | ||
LICENSE | ||
Makefile | ||
Makefile.proto | ||
otel.go | ||
pre_release.sh | ||
README.md | ||
RELEASING.md | ||
tag.sh | ||
verify_examples.sh |
OpenTelemetry-Go
The Go OpenTelemetry client.
Installation
This repository includes multiple packages. The api
package contains core data types, interfaces and no-op implementations that comprise the OpenTelemetry API following
the
specification.
The sdk
package is the reference implementation of the API.
Libraries that produce telemetry data should only depend on api
and defer the choice of the SDK to the application developer. Applications may
depend on sdk
or another package that implements the API.
All packages are published to go.opentelemetry.io/otel and is the preferred location to import from.
Additional resources:
Quick Start
Below is a brief example of importing OpenTelemetry, initializing a tracer and creating some simple spans.
package main
import (
"context"
"log"
"go.opentelemetry.io/otel/api/global"
"go.opentelemetry.io/otel/exporters/stdout"
sdktrace "go.opentelemetry.io/otel/sdk/trace"
)
func main() {
pusher, err := stdout.InstallNewPipeline(nil, nil)
if err != nil {
log.Fatal(err)
}
defer pusher.Stop()
tracer := global.Tracer("ex.com/basic")
ctx, span := tracer.Start(context.Background(), "main")
defer span.End()
/* … */
}
See the API documentation for more detail, and the opentelemetry examples.
Compatible Exporters
See the Go packages depending upon sdk/export/trace and sdk/export/metric for a list of all exporters compatible with OpenTelemetry's Go SDK.
Compatible Libraries
See the opentelemetry-go-contrib repo for packages that facilitates instrumenting other useful Go libraries with opentelemetry-go for distributed tracing and monitoring.
Contributing
See the contributing file.