otel

module
v0.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 8, 2020 License: Apache-2.0

README

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"
	"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()
	tracer := global.TraceProvider().Tracer("ex.com/basic")

	tracer.WithSpan(context.Background(), "foo",
		func(ctx context.Context) error {
			tracer.WithSpan(ctx, "bar",
				func(ctx context.Context) error {
					tracer.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.

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.

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
Jaeger Trace Exporter Alpha v0.1.0 October 28 2019 November 05 2019
Trace Context Propagation Alpha v0.1.0 Unknown November 05 2019
OpenTracing Bridge Alpha v0.1.0 October November 05 2019
Metrics API Alpha v0.2.0 October 28 2019 December 03 2019
Metrics SDK Alpha v0.2.0 October 28 2019 December 03 2019
Prometheus Metrics Exporter Alpha v0.2.0 October 28 2019 December 03 2019
Context Prop. rename/Baggage Alpha v0.3.0 December 23 2019 -
OpenTelemetry Collector Exporter Alpha v0.4.0 January 15 2020 -
Zipkin Trace Exporter Alpha Unknown -
OpenCensus Bridge Alpha Unknown -

Directories

Path Synopsis
api
core
This package provides basic types used in OpenTelemetry - keys, values, numbers and span contexts.
This package provides basic types used in OpenTelemetry - keys, values, numbers and span contexts.
key
This package provides convenience functions for creating keys and key-value pairs.
This package provides convenience functions for creating keys and key-value pairs.
metric
metric package provides an API for reporting diagnostic measurements using three basic kinds of instruments (or four, if calling one special case a separate one).
metric package provides an API for reporting diagnostic measurements using three basic kinds of instruments (or four, if calling one special case a separate one).
propagators
Package propagators contains interface definition for BinaryFormat and TextFormat propagators and implementation of propagators for different format and suppliers.
Package propagators contains interface definition for BinaryFormat and TextFormat propagators and implementation of propagators for different format and suppliers.
bridge
opentracing
This package implements a bridge that forwards OpenTracing API calls to the OpenTelemetry SDK.
This package implements a bridge that forwards OpenTracing API calls to the OpenTelemetry SDK.
opentracing/migration
This package provides interfaces and functions that are useful for providing a cooperation of the OpenTelemetry tracers with the OpenTracing API.
This package provides interfaces and functions that are useful for providing a cooperation of the OpenTelemetry tracers with the OpenTracing API.
opencensus Module
example
basic Module
dice Module
fib Module
grpc Module
http Module
jaeger Module
namedtracer Module
opencensus Module
passthrough Module
prometheus Module
view Module
zipkin Module
exporter
trace/stdout
Package stdout contains an OpenTelemetry tracing exporter for writing to stdout.
Package stdout contains an OpenTelemetry tracing exporter for writing to stdout.
trace/jaeger Module
exporters
jaeger Module
otlp Module
prometheus Module
stdout Module
trace/jaeger Module
trace/zipkin Module
zipkin Module
internal
tools Module
log module
metric module
oteltest module
plugin
othttp
Package othttp provides a http.Handler and functions that are intended to be used to add tracing by wrapping existing handlers (with Handler) and routes WithRouteTag.
Package othttp provides a http.Handler and functions that are intended to be used to add tracing by wrapping existing handlers (with Handler) and routes WithRouteTag.
schema module
sdk
Package opentelemetry contains Go support for OpenTelemetry.
Package opentelemetry contains Go support for OpenTelemetry.
metric
Package metric implements the OpenTelemetry metric.Meter API.
Package metric implements the OpenTelemetry metric.Meter API.
trace
Package trace contains support for OpenTelemetry distributed tracing.
Package trace contains support for OpenTelemetry distributed tracing.
trace/internal
Package internal provides trace internals.
Package internal provides trace internals.
log Module
trace module

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL