package global

import "go.opentelemetry.io/otel/api/global"

Package global provides global providers, propagators and more.

Index

Functions

func ErrorHandler

func ErrorHandler() otel.ErrorHandler

ErrorHandler returns the global ErrorHandler instance. If no ErrorHandler instance has been set (`SetErrorHandler`), the default ErrorHandler which logs errors to STDERR is returned.

func Handle

func Handle(err error)

Handle is a convience function for ErrorHandler().Handle(err)

func Meter

func Meter(instrumentationName string, opts ...metric.MeterOption) metric.Meter

Meter creates an implementation of the Meter interface from the global MeterProvider. The instrumentationName must be the name of the library providing instrumentation. This name may be the same as the instrumented code only if that code provides built-in instrumentation. If the instrumentationName is empty, then a implementation defined default name will be used instead.

This is short for MeterProvider().Meter(name)

func MeterProvider

func MeterProvider() metric.MeterProvider

MeterProvider returns the registered global meter provider. If none is registered then a default meter provider is returned that forwards the Meter interface to the first registered Meter.

Use the meter provider to create a named meter. E.g.

meter := global.MeterProvider().Meter("example.com/foo")

or

meter := global.Meter("example.com/foo")

func SetErrorHandler

func SetErrorHandler(h otel.ErrorHandler)

SetErrorHandler sets the global ErrorHandler to be h.

func SetMeterProvider

func SetMeterProvider(mp metric.MeterProvider)

SetMeterProvider registers `mp` as the global meter provider.

func SetTextMapPropagator

func SetTextMapPropagator(propagator otel.TextMapPropagator)

SetTextMapPropagator sets propagator as the global TSetTextMapPropagator.

func SetTracerProvider

func SetTracerProvider(tp trace.TracerProvider)

SetTracerProvider registers `tp` as the global trace provider.

func TextMapPropagator

func TextMapPropagator() otel.TextMapPropagator

TextMapPropagator returns the global TextMapPropagator. If none has been set, a No-Op TextMapPropagator is returned.

func Tracer

func Tracer(name string) trace.Tracer

Tracer creates a named tracer that implements Tracer interface. If the name is an empty string then provider uses default name.

This is short for TracerProvider().Tracer(name)

func TracerProvider

func TracerProvider() trace.TracerProvider

TracerProvider returns the registered global trace provider. If none is registered then an instance of NoopTracerProvider is returned.

Use the trace provider to create a named tracer. E.g.

tracer := global.TracerProvider().Tracer("example.com/foo")

or

tracer := global.Tracer("example.com/foo")

Source Files

doc.go handler.go metric.go propagation.go trace.go

Directories

PathSynopsis
api/global/internal
Version
v0.13.0
Published
Oct 8, 2020
Platform
darwin/amd64
Imports
8 packages
Last checked
34 minutes ago

Tools for package owners.