1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2024-12-02 08:52:21 +02:00
OpenTelemetry Go API and SDK https://opentelemetry.io/
Go to file
Gustavo Silva Paiva 9d19d8296c Clear NoopTracer implementation and improve Tracer argument names (#314)
* clean dead code from noop tracer

* rename arguments from the Tracer interface's methods

* remove service, resources and component options from sdk/tracer and mock tracer

* remove unused fields from sdk/tracer
2019-11-14 10:50:20 -08:00
.circleci Fix CI modules cache (#316) 2019-11-13 22:28:15 -08:00
api Clear NoopTracer implementation and improve Tracer argument names (#314) 2019-11-14 10:50:20 -08:00
bridge/opentracing Change SpanKind type an integer type (#288) 2019-11-04 16:05:43 -08:00
example exporter(stackdriver): fix ExportSpans when ctx is not nil (#294) 2019-11-14 09:45:17 -08:00
exporter/trace exporter(stackdriver): fix ExportSpans when ctx is not nil (#294) 2019-11-14 09:45:17 -08:00
global Namespace import path under "/otel" (#274) 2019-11-01 11:40:29 -07:00
internal Clear NoopTracer implementation and improve Tracer argument names (#314) 2019-11-14 10:50:20 -08:00
plugin Move export types into trace and metric-specific subdirs (#289) 2019-11-05 13:08:55 -08:00
propagation Namespace import path under "/otel" (#274) 2019-11-01 11:40:29 -07:00
sdk Clear NoopTracer implementation and improve Tracer argument names (#314) 2019-11-14 10:50:20 -08:00
.gitignore sdk/trace: Test the Sampling Probability (#247) 2019-10-29 16:53:50 -07:00
.golangci.yml Enable golint & gofmt, resolve issues (#214) 2019-10-16 10:24:38 -07:00
CODEOWNERS propose additional CODEOWNERS (#313) 2019-11-14 09:21:59 -08:00
CONTRIBUTING.md Namespace import path under "/otel" (#274) 2019-11-01 11:40:29 -07:00
get_main_pkgs.sh Automate getting the list of examples to build (and switch to go 1.13 to avoid module problems) (#246) 2019-10-29 08:45:48 -07:00
go.mod Namespace import path under "/otel" (#274) 2019-11-01 11:40:29 -07:00
go.sum Metrics SDK work-in-progress (#172) 2019-10-29 13:27:22 -07:00
LICENSE Initial commit 2019-05-16 12:05:27 -07:00
Makefile build all tests and run all tests too (#254) 2019-10-30 10:09:18 -07:00
README.md update README for v0.1.0 (#291) 2019-11-05 05:49:02 -08: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 Gitter

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.

To install the API and SDK packages,

$ go get -u go.opentelemetry.io/otel

Quick Start

package main

import (
	"context"
	"log"

	apitrace "go.opentelemetry.io/otel/api/trace"
	"go.opentelemetry.io/otel/exporter/trace/stdout"
	"go.opentelemetry.io/otel/global"
	sdktrace "go.opentelemetry.io/otel/sdk/trace"
)

func initTracer() {
	exporter, err := stdout.NewExporter(stdout.Options{PrettyPrint: true})
	if err != nil {
		log.Fatal(err)
	}
	tp, err := sdktrace.NewProvider(sdktrace.WithConfig(sdktrace.Config{DefaultSampler: sdktrace.AlwaysSample()}),
		sdktrace.WithSyncer(exporter))
	if err != nil {
		log.Fatal(err)
	}
	global.SetTraceProvider(tp)
}

func main() {
	initTracer()

	apitrace.GlobalTracer().WithSpan(context.Background(), "foo",
		func(ctx context.Context) error {
			apitrace.GlobalTracer().WithSpan(ctx, "bar",
				func(ctx context.Context) error {
					apitrace.GlobalTracer().WithSpan(ctx, "baz",
						func(ctx context.Context) error {
							return nil
						},
					)
					return nil
				},
			)
			return nil
		},
	)
}

See the API documentation for more detail, and the opentelemetry-example-app for a complete example.

Contributing

See the contributing file.

Release Schedule

OpenTelemetry Go is under active development. Below is the release schedule for the Go library. The first version of the release isn't guaranteed to conform to a specific version of the specification, and future releases will not attempt to maintain backward compatibility with the alpha release.

Component Version Target Date Release Date
Tracing API Alpha v0.1.0 October 28 2019 November 05 2019
Tracing SDK Alpha v0.1.0 October 28 2019 November 05 2019
Metrics API Alpha October 28 2019 -
Metrics SDK Alpha October 28 2019 -
Zipkin Trace Exporter Alpha Unknown -
Jaeger Trace Exporter Alpha v0.1.0 October 28 2019 November 05 2019
Prometheus Metrics Exporter Alpha October 28 2019 -
Trace Context Propagation Alpha v0.1.0 Unknown November 05 2019
OpenTracing Bridge Alpha v0.1.0 October November 05 2019
OpenCensus Bridge Alpha Unknown -