1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-01-14 02:33:21 +02:00
OpenTelemetry Go API and SDK https://opentelemetry.io/
Go to file
Krzesimir Nowak 7d301220a2 Automate getting the list of examples to build (and switch to go 1.13 to avoid module problems) (#246)
* automate building all the examples

the EXAMPLES variable was out of date - the stackdriver example wasn't
even built

let's automate it, so we don't need to remember about updating the
variable after adding a new example to the examples directory

* move jaeger example to example directory

this should be in the examples directory, so it can be built by the
make test during CI.

* switch to go 1.13

circle ci uses go 1.12 (which is the oldest 1.12 release) that
contains some bugs with module handling

let's switch to go 1.13.3, the latest go currently

* use a single valid revision of the project in go.mod files

this probably shouldn't be a problem since the switch to go 1.13 in
circle ci, but cleans up the mess and the use of bogus releases
2019-10-29 08:45:48 -07:00
.circleci 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
api api(trace): change SpanID to byte array (#241) 2019-10-28 10:05:06 -07:00
bridge/opentracing Move opentracing bridge out of experimental (#245) 2019-10-28 16:56:11 -07:00
example 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
exporter/trace 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
global move global trace provider api to global package. (#240) 2019-10-25 11:38:52 -07:00
internal api(trace): change SpanID to byte array (#241) 2019-10-28 10:05:06 -07:00
plugin move global trace provider api to global package. (#240) 2019-10-25 11:38:52 -07:00
propagation api(trace): change SpanID to byte array (#241) 2019-10-28 10:05:06 -07:00
sdk api(trace): change SpanID to byte array (#241) 2019-10-28 10:05:06 -07:00
.gitignore 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
.golangci.yml Enable golint & gofmt, resolve issues (#214) 2019-10-16 10:24:38 -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
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 init go modules for jaeger exporter (#237) 2019-10-24 09:13:01 -07:00
go.sum init go modules for jaeger exporter (#237) 2019-10-24 09:13:01 -07:00
LICENSE Initial commit 2019-05-16 12:05:27 -07:00
Makefile 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
README.md minor fixes in readme (#244) 2019-10-28 12:46:52 -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.

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

Quick Start

package main

import (
	"context"
	"log"

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

func initTracer() {
	sdktrace.Register()

	exporter, err := stdout.NewExporter(stdout.Options{PrettyPrint: true})
	if err != nil {
		log.Fatal(err)
	}

	ssp := sdktrace.NewSimpleSpanProcessor(exporter)
	sdktrace.RegisterSpanProcessor(ssp)

	// For the demonstration, use sdktrace.AlwaysSample sampler to sample all traces.
	// In a production application, use sdktrace.ProbabilitySampler with a desired probability.
	sdktrace.ApplyConfig(sdktrace.Config{DefaultSampler: sdktrace.AlwaysSample()})
}

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
Tracing API Alpha October 28 2019
Tracing SDK Alpha October 28 2019
Metrics API Alpha October 28 2019
Metrics SDK Alpha October 28 2019
Zipkin Trace Exporter Alpha Unknown
Jaeger Trace Exporter Alpha October 28 2019
Prometheus Metrics Exporter Alpha October 28 2019
Trace Context Propagation Alpha Unknown
OpenTracing Bridge Alpha October
OpenCensus Bridge Alpha Unknown