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
Isobel Redelmeier a9756528ba Add inspectable test tracer (#353)
* Add inspectable test tracer

This adds a test Tracer implementation that tracks its active and ended
spans and uses a Span implementation that can be inspected (e.g., to see
what attributes have been set).

* Ensure test tracer can start spans concurrently

* Flip conditional logic to return early

* Remove duplicate test

* Fix file name casing

🤦

* Add comments to testtrace code

* Remove Link and AddLink methods from test Span

* Enable concurrently setting and getting test attrs

* Remove SetAttribute from test tracer

* Fix test

* Fix names post-rebase
2019-12-04 14:00:35 -08:00
.circleci Simplify Makefile (#354) 2019-11-27 11:27:41 -08:00
api Add inspectable test tracer (#353) 2019-12-04 14:00:35 -08:00
bridge/opentracing Make span start/end configuration more greppable (#369) 2019-12-05 08:41:13 +11:00
example go module update for release v0.2.0 (#366) 2019-12-03 00:08:30 -08:00
exporter go module update for release v0.2.0 (#366) 2019-12-03 00:08:30 -08:00
internal Add inspectable test tracer (#353) 2019-12-04 14:00:35 -08:00
plugin Make span start/end configuration more greppable (#369) 2019-12-05 08:41:13 +11:00
sdk Make span start/end configuration more greppable (#369) 2019-12-05 08:41:13 +11:00
.gitignore exclude example dirs from coverage test/report. (#365) 2019-12-02 23:58:53 -08:00
.golangci.yml Enable golint & gofmt, resolve issues (#214) 2019-10-16 10:24:38 -07:00
CODEOWNERS Removing pjanotti from owners (#342) 2019-11-22 11:15:31 -08:00
CONTRIBUTING.md Namespace import path under "/otel" (#274) 2019-11-01 11:40:29 -07:00
get_main_pkgs.sh Use /usr/bin/env bash rather than /bin/bash (#336) 2019-11-21 16:19:11 -08:00
go.mod Prometheus exporter (#334) 2019-11-26 11:47:15 -08:00
go.sum Prometheus exporter (#334) 2019-11-26 11:47:15 -08:00
LICENSE Initial commit 2019-05-16 12:05:27 -07:00
Makefile exclude example dirs from coverage test/report. (#365) 2019-12-02 23:58:53 -08:00
README.md Put direct link for doc and use https (#368) 2019-12-04 09:39:55 +11: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"

	"go.opentelemetry.io/otel/api/global"
	apitrace "go.opentelemetry.io/otel/api/trace"
	"go.opentelemetry.io/otel/exporter/trace/stdout"
	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 -