1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-01-05 22:54:18 +02:00
OpenTelemetry Go API and SDK https://opentelemetry.io/
Go to file
Tyler Yahn f7df68b68b
Add support for Resources in the SDK (#552)
* Add support for Resources in the SDK

Add `Config` types for the push `Controller` and the `SDK`. Included
with this are helper functions to configure the `ErrorHandler` and
`Resource`.

Add a `Resource` to the Meter `Descriptor`. The choice to add the
`Resource` here (instead of say a `Record` or the `Instrument` itself)
was motivated by the definition of the `Descriptor` as the way to
uniquely describe a metric instrument.

Update the push `Controller` and default `SDK` to pass down their configured
`Resource` from instantiation to the metric instruments.

* Update New SDK constructor documentation

* Change NewDescriptor constructor to take opts

Add DescriptorConfig and DescriptorOption to configure the metric
Descriptor with the description, unit, keys, and resource.

Update all function calls to NewDescriptor to use new function
signature.

* Apply suggestions from code review

Co-Authored-By: Rahul Patel <rghetia@yahoo.com>

* Update and add copyright notices

* Update push controller creator func

Pass the configured ErrorHandler for the controller to the SDK.

* Update Resource integration with the SDK

Add back the Resource field to the Descriptor that was moved in the
last merge with master.

Add a resource.Provider interface.

Have the default SDK implement the new resource.Provider interface and
integrate the new interface into the newSync/newAsync workflows. Now, if
the SDK has a Resource defined it will be passed to all Descriptors
created for the instruments it creates.

* Remove nil check for metric SDK config

* Fix and add test for API Options

Add an `Equal` method to the Resource so it can be compared with
github.com/google/go-cmp/cmp.

Add additional test of the API Option unit tests to ensure WithResource
correctly sets a new resource.

* Move the resource.Provider interface to the API package

Move the interface to where it is used.

Fix spelling.

* Remove errant line

* Remove nil checks for the push controller config

* Fix check SDK implements Resourcer

* Apply suggestions from code review

Co-Authored-By: Rahul Patel <rghetia@yahoo.com>

Co-authored-by: Rahul Patel <rghetia@yahoo.com>
2020-03-20 08:58:32 -07:00
.circleci update to v0.2.3 (#512) 2020-03-04 16:12:25 -05:00
api Add support for Resources in the SDK (#552) 2020-03-20 08:58:32 -07:00
bridge/opentracing add shorter version for global providers (#538) 2020-03-11 08:23:32 -07:00
example Refactor the SDK helpers, create MeterImpl (#560) 2020-03-19 12:02:46 -07:00
exporters Replace Ordered with an iterator in export.Labels. (#567) 2020-03-19 15:01:34 -07:00
internal Refactor the SDK helpers, create MeterImpl (#560) 2020-03-19 12:02:46 -07:00
plugin Provide an implementation of the Header* filters that does not depend on go1.14 (#565) 2020-03-17 08:45:44 -07:00
sdk Add support for Resources in the SDK (#552) 2020-03-20 08:58:32 -07:00
tools Update tools (#492) 2020-02-25 15:52:46 -08:00
.gitignore Zipkin exporter (#495) 2020-03-11 14:49:02 -07:00
.golangci.yml Enable golint & gofmt, resolve issues (#214) 2019-10-16 10:24:38 -07:00
CODEOWNERS Propose putting isobel to emeritus :( (#526) 2020-03-06 11:15:00 -05:00
CONTRIBUTING.md Update README with import instructions and how to build / test (#505) 2020-03-12 09:52:12 -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 update to v0.2.3 (#512) 2020-03-04 16:12:25 -05:00
go.sum update to v0.2.3 (#512) 2020-03-04 16:12:25 -05:00
LICENSE Initial commit 2019-05-16 12:05:27 -07:00
Makefile skip test-386 for Mac OS 10.15.x (Catalina and upwards). (#521) 2020-03-05 12:31:13 -08:00
README.md Update README with import instructions and how to build / test (#505) 2020-03-12 09:52:12 -07:00
tag_latest_modules.sh module tag script for releng (#414) 2020-01-06 13:20:43 -05: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.

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/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.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 -