Releases: open-telemetry/opentelemetry-go
Release v1.0.0-RC3
1.0.0-RC3 - 2021-09-03
Added
- Added
ErrorHandlerFuncto use a function as an"go.opentelemetry.io/otel".ErrorHandler. (#2149) - Added
"go.opentelemetry.io/otel/trace".WithStackTraceoption to add a stack trace when usingspan.RecordErroror when panic is handled inspan.End. (#2163) - Added typed slice attribute types and functionality to the
go.opentelemetry.io/otel/attributepackage to replace the existing array type and functions. (#2162)BoolSlice,IntSlice,Int64Slice,Float64Slice, andStringSlicereplace the use of theArrayfunction in the package.
- Added the
go.opentelemetry.io/otel/example/fibexample package.
Included is an example application that computes Fibonacci numbers. (#2203)
Changed
- Metric instruments have been renamed to match the (feature-frozen) metric API specification:
- ValueRecorder becomes Histogram
- ValueObserver becomes Gauge
- SumObserver becomes CounterObserver
- UpDownSumObserver becomes UpDownCounterObserver
The API exported from this project is still considered experimental. (#2202)
- Metric SDK/API implementation type
InstrumentKindmoves intosdkapisub-package. (#2091) - The Metrics SDK export record no longer contains a Resource pointer, the SDK
"go.opentelemetry.io/otel/sdk/trace/export/metric".Exporter.Export()function for push-based exporters now takes a single Resource argument, pull-based exporters use"go.opentelemetry.io/otel/sdk/metric/controller/basic".Controller.Resource(). (#2120) - The JSON output of the
go.opentelemetry.io/otel/exporters/stdout/stdouttraceis harmonized now such that the output is "plain" JSON objects after each other of the form{ ... } { ... } { ... }. Earlier the JSON objects describing a span were wrapped in a slice for eachExporter.ExportSpanscall, like[ { ... } ][ { ... } { ... } ]. Outputting JSON object directly after each other is consistent with JSON loggers, and a bit easier to parse and read. (#2196) - Update the
NewTracerConfig,NewSpanStartConfig,NewSpanEndConfig, andNewEventConfigfunction in thego.opentelemetry.io/otel/tracepackage to return their respective configurations as structs instead of pointers to the struct. (#2212)
Deprecated
- The
go.opentelemetry.io/otel/bridge/opencensus/utilspackage is deprecated.
All functionality from this package now exists in thego.opentelemetry.io/otel/bridge/opencensuspackage.
The functions from that package should be used instead. (#2166) - The
"go.opentelemetry.io/otel/attribute".Arrayfunction and the relatedARRAYvalue type is deprecated.
Use the typed*Slicefunctions and types added to the package instead. (#2162) - The
"go.opentelemetry.io/otel/attribute".Anyfunction is deprecated.
Use the typed functions instead. (#2181) - The
go.opentelemetry.io/otel/oteltestpackage is deprecated.
The"go.opentelemetry.io/otel/sdk/trace/tracetest".SpanRecordercan be registered with the default SDK (go.opentelemetry.io/otel/sdk/trace) as aSpanProcessorand used as a replacement for this deprecated package. (#2188)
Removed
- Removed metrics test package
go.opentelemetry.io/otel/sdk/export/metric/metrictest. (#2105)
Fixed
- The
fromEnvdetector no longer throws an error whenOTEL_RESOURCE_ATTRIBUTESenvironment variable is not set or empty. (#2138) - Setting the global
ErrorHandlerwith"go.opentelemetry.io/otel".SetErrorHandlermultiple times is now supported. (#2160, #2140) - The
"go.opentelemetry.io/otel/attribute".Anyfunction now supportsint32values. (#2169) - Multiple calls to
"go.opentelemetry.io/otel/sdk/metric/controller/basic".WithResource()are handled correctly, and when no resources are provided"go.opentelemetry.io/otel/sdk/resource".Default()is used. (#2120) - The
WithoutTimestampsoption for thego.opentelemetry.io/otel/exporters/stdout/stdouttraceexporter causes the exporter to correctly ommit timestamps. (#2195) - Fixed typos in resources.go. (#2201)
Release v1.0.0-RC2
Added
- Added
WithOSDescriptionresource configuration option to set OS (Operating System) description resource attribute (os.description). (#1840) - Added
WithOSresource configuration option to set all OS (Operating System) resource attributes at once. (#1840) - Added the
WithRetryoption to thego.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttppackage.
This option is a replacement for the removedWithMaxAttemptsandWithBackoffoptions. (#2095) - Added API
LinkFromContextto return Link which encapsulates SpanContext from provided context and also encapsulates attributes. (#2115) - Added a new
Linktype under the SDKotel/sdk/tracepackage that counts the number of attributes that were dropped for surpassing theAttributePerLinkCountLimitconfigured in the Span'sSpanLimits.
This new type replaces the equal-named APILinktype found in theotel/tracepackage for most usages within the SDK.
For example, instances of this type are now returned by theLinks()function ofReadOnlySpans provided in places like theOnEndfunction ofSpanProcessorimplementations. (#2118)
Changed
- The
SpanModelsfunction is now exported from thego.opentelemetry.io/otel/exporters/zipkinpackage to convert OpenTelemetry spans into Zipkin model spans. (#2027) - Rename the
"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc".RetrySettingstoRetryConfig. (#2095) - Rename the
"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp".RetrySettingstoRetryConfig. (#2095)
Deprecated
- The
TextMapCarrierandTextMapPropagatorfrom thego.opentelemetry.io/otel/oteltestpackage and their associated creation functions (TextMapCarrier,NewTextMapPropagator) are deprecated. (#2114) - The
Harnesstype from thego.opentelemetry.io/otel/oteltestpackage and its associated creation function,NewHarnessare deprecated and will be removed in the next release. (#2123) - The
TraceStateFromKeyValuesfunction from thego.opentelemetry.io/otel/oteltestpackage is deprecated.
Use thetrace.ParseTraceStatefunction instead. (#2122)
Removed
- Removed the deprecated package
go.opentelemetry.io/otel/exporters/trace/jaeger. (#2020) - Removed the deprecated package
go.opentelemetry.io/otel/exporters/trace/zipkin. (#2020) - Removed the
"go.opentelemetry.io/otel/sdk/resource".WithBuiltinDetectorsfunction.
The explicitWith*options for every built-in detector should be used instead. (#2026 #2097) - Removed the
WithMaxAttemptsandWithBackoffoptions from thego.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttppackage.
The retry logic of the package has been updated to match theotlptracegrpcpackage and accordingly aWithRetryoption is added that should be used instead. (#2095) - Removed
DroppedAttributeCountfield fromotel/trace.Linkstruct. (#2118)
Fixed
- When using WithNewRoot, don't use the parent context for making sampling decisions. (#2032)
oteltest.Tracernow creates a validSpanContextwhen usingWithNewRoot. (#2073)- OS type detector now sets the correct
dragonflybsdvalue for DragonFly BSD. (#2092) - The OTel span status is correctly transformed into the OTLP status in the
go.opentelemetry.io/otel/exporters/otlp/otlptracepackage.
This fix will by default set the status toUnsetif it is not explicitly set toOkorError. (#2099 #2102) - The
Injectmethod for the"go.opentelemetry.io/otel/propagation".TraceContexttype no longer injects emptytracestatevalues. (#2108)
Experimental Metrics Release v0.22.0
Release v1.0.0-RC1
1.0.0-RC1 / 0.21.0 - 2021-06-18
With this release we are introducing a split in module versions. The tracing API and SDK are entering the v1.0.0 Release Candidate phase with v1.0.0-RC1 while the experimental metrics API and SDK continue with v0.x releases at v0.21.0. Modules at major version 1 or greater will not depend on modules with major version 0.
Added
- Adds
otlpgrpc.WithRetryoption for configuring the retry policy for transient errors on the otlp/gRPC exporter. (#1832)- The following status codes are defined as transient errors:
gRPC Status Code Description 1 Cancelled 4 Deadline Exceeded 8 Resource Exhausted 10 Aborted 10 Out of Range 14 Unavailable 15 Data Loss
- The following status codes are defined as transient errors:
- Added
Statustype to thego.opentelemetry.io/otel/sdk/tracepackage to represent the status of a span. (#1874) - Added
SpanStubtype and its associated functions to thego.opentelemetry.io/otel/sdk/trace/tracetestpackage.
This type can be used as a testing replacement for theSpanSnapshotthat was removed from thego.opentelemetry.io/otel/sdk/tracepackage. (#1873) - Adds support for scheme in
OTEL_EXPORTER_OTLP_ENDPOINTaccording to the spec. (#1886) - Adds
trace.WithSchemaURLoption for configuring the tracer with a Schema URL. (#1889) - Added an example of using OpenTelemetry Go as a trace context forwarder. (#1912)
ParseTraceStateis added to thego.opentelemetry.io/otel/tracepackage.
It can be used to decode aTraceStatefrom atracestateheader string value. (#1937)- Added
Lenmethod to theTraceStatetype in thego.opentelemetry.io/otel/tracepackage.
This method returns the number of list-members theTraceStateholds. (#1937) - Creates package
go.opentelemetry.io/otel/exporters/otlp/otlptracethat defines a trace exporter that uses aotlptrace.Clientto send data.
Creates packagego.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpcimplementing a gRPCotlptrace.Clientand offers convenience functions,NewExportPipelineandInstallNewPipeline, to setup and install aotlptrace.Exporterin tracing .(#1922) - Added
Baggage,Member, andPropertytypes to thego.opentelemetry.io/otel/baggagepackage along with their related functions. (#1967) - Added
ContextWithBaggage,ContextWithoutBaggage, andFromContextfunctions to thego.opentelemetry.io/otel/baggagepackage.
These functions replace theSet,Value,ContextWithValue,ContextWithoutValue, andContextWithEmptyfunctions from that package and directly work with the newBaggagetype. (#1967) - The
OTEL_SERVICE_NAMEenvironment variable is the preferred source forservice.name, used by the environment resource detector if a service name is present both there and inOTEL_RESOURCE_ATTRIBUTES. (#1969) - Creates package
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttpimplementing an HTTPotlptrace.Clientand offers convenience functions,NewExportPipelineandInstallNewPipeline, to setup and install aotlptrace.Exporterin tracing. (#1963) - Changes
go.opentelemetry.io/otel/sdk/resource.NewWithAttributesto require a schema URL. The old function is still available asresource.NewSchemaless. This is a breaking change. (#1938) - Several builtin resource detectors now correctly populate the schema URL. (#1938)
- Creates package
go.opentelemetry.io/otel/exporters/otlp/otlpmetricthat defines a metrics exporter that uses aotlpmetric.Clientto send data. - Creates package
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpcimplementing a gRPCotlpmetric.Clientand offers convenience functions,NewandNewUnstarted, to create anotlpmetric.Exporter.(#1991) - Added
go.opentelemetry.io/otel/exporters/stdout/stdouttraceexporter. (#2005) - Added
go.opentelemetry.io/otel/exporters/stdout/stdoutmetricexporter. (#2005) - Added a
TracerProvider()method to the"go.opentelemetry.io/otel/trace".Spaninterface. This can be used to obtain aTracerProviderfrom a given span that utilizes the same trace processing pipeline. (#2009)
Changed
- Make
NewSplitDriverfromgo.opentelemetry.io/otel/exporters/otlptake variadic arguments instead of aSplitConfigitem.
NewSplitDrivernow automatically implements an internalnoopDriverforSplitConfigfields that are not initialized. (#1798) resource.New()now creates a Resource without builtin detectors. Previous behavior is now achieved by usingWithBuiltinDetectorsOption. (#1810)- Move the
Eventtype from thego.opentelemetry.io/otelpackage to thego.opentelemetry.io/otel/sdk/tracepackage. (#1846) - CI builds validate against last two versions of Go, dropping 1.14 and adding 1.16. (#1865)
- BatchSpanProcessor now report export failures when calling
ForceFlush()method. (#1860) Set.Encoded(Encoder)no longer caches the result of an encoding. (#1855)- Renamed
CloudZoneKeytoCloudAvailabilityZoneKeyin Resource semantic conventions according to spec. (#1871) - The
StatusCodeandStatusMessagemethods of theReadOnlySpaninterface and theSpanproduced by thego.opentelemetry.io/otel/sdk/tracepackage have been replaced with a singleStatusmethod.
This method returns the status of a span using the newStatustype. (#1874) - Updated
ExportSpansmethod of theSpanExporterinterface type to acceptReadOnlySpans instead of the removedSpanSnapshot.
This brings the export interface into compliance with the specification in that it now accepts an explicitly immutable type instead of just an implied one. (#1873) - Unembed
SpanContextinLink. (#1877) - Generate Semantic conventions from the specification YAML. (#1891)
- Spans created by the global
Tracerobtained fromgo.opentelemetry.io/otel, prior to a functioningTracerProviderbeing set, now propagate the span context from their parent if one exists. (#1901) - The
"go.opentelemetry.io/otel".Tracerfunction now accepts tracer options. (#1902) - Move the
go.opentelemetry.io/otel/unitpackage togo.opentelemetry.io/otel/metric/unit. (#1903) - Changed
go.opentelemetry.io/otel/trace.TracerConfigto conform to the Contributing guidelines (#1921) - Changed
go.opentelemetry.io/otel/trace.SpanConfigto conform to the Contributing guidelines. (#1921) - Changed
span.End()now only accepts Options that are allowed atEnd(). (#1921) - Changed
go.opentelemetry.io/otel/metric.InstrumentConfigto conform to the Contributing guidelines. (#1921) - Changed
go.opentelemetry.io/otel/metric.MeterConfigto conform to the Contributing guidelines. (#1921) - Refactored option types according to the contribution style guide. (#1882)
- Move the
go.opentelemetry.io/otel/trace.TraceStateFromKeyValuesfunction to thego.opentelemetry.io/otel/oteltestpackage.
This function is preserved for testing purposes where it may be useful to create aTraceStatefromattribute.KeyValues, but it is not intended for production use.
The newParseTraceStatefunction should be used to create aTraceState. (#1931) - Updated
MarshalJSONmethod of thego.opentelemetry.io/otel/trace.TraceStatetype to marshal the type into the string representation of theTraceState. (#1931) - The
TraceState.Deletemethod from thego.opentelemetry.io/otel/tracepackage no longer returns an error in addition to aTraceState. (#1931) - Updated
Getmethod of theTraceStatetype from thego.opentelemetry.io/otel/tracepackage to accept astringinstead of anattribute.Keytype. (#1931) - Updated
Insertmethod of theTraceStatetype from thego.opentelemetry.io/otel/tracepackage to accept a pair ofstrings instead of anattribute.KeyValuetype. (#1931) - Updated
Deletemethod of theTraceStatetype from thego.opentelemetry.io/otel/tracepackage to accept astringinstead of anattribute.Keytype. (#1931) - Renamed
NewExportertoNewin thego.opentelemetry.io/otel/exporters/stdoutpackage. (#1985) - Renamed
NewExportertoNewin thego.opentelemetry.io/otel/exporters/metric/prometheuspackage. (#1985) - Renamed
NewExportertoNewin thego.opentelemetry.io/otel/exporters/trace/jaegerpackage. (#1985) - Renamed
NewExportertoNewin thego.opentelemetry.io/otel/exporters/trace/zipkinpackage. (#1985) - Renamed
NewExportertoNewin thego.opentelemetry.io/otel/exporters/otlppackage. (#1985) - Renamed
NewUnstartedExportertoNewUnstartedin thego.opentelemetry.io/otel/exporters/otlppackage. (#1985) - The
go.opentelemetry.io/otel/semconvpackage has been moved togo.opentelemetry.io/otel/semconv/v1.4.0to allow for multiple telemetry schema versions to be used concurrently. (#1987) - Metrics test helpers in
go.opentelemetry.io/otel/oteltesthave been moved togo.opentelemetry.io/otel/metric/metrictest. (#1988)
Deprecated
- The
go.opentelemetry.io/otel/exporters/metric/prometheusis deprecated, usego.opentelemetry.io/otel/exporters/prometheusinstead. (#1993) - The
go.opentelemetry.io/otel/exporters/trace/jaegeris deprecated, usego.opentelemetry.io/otel/exporters/jaegerinstead. (#1993) - The
go.opentelemetry.io/otel/exporters/trace/zipkinis deprecated, usego.opentelemetry.io/otel/exporters/zipkininstead. (#1993)
Removed
Release v0.20.0
Added
- The OTLP exporter now has two new convenience functions,
NewExportPipelineandInstallNewPipeline, setup and install the exporter in tracing and metrics pipelines. (#1373) - Adds semantic conventions for exceptions. (#1492)
- Added Jaeger Environment variables:
OTEL_EXPORTER_JAEGER_AGENT_HOST,OTEL_EXPORTER_JAEGER_AGENT_PORT
These environment variables can be used to override Jaeger agent hostname and port (#1752) - Option
ExportTimeoutwas added to batch span processor. (#1755) trace.TraceFlagsis now a defined type overbyteandWithSampled(bool) TraceFlagsandIsSampled() boolmethods have been added to it. (#1770)- The
EventandLinkstruct types from thego.opentelemetry.io/otelpackage now include aDroppedAttributeCountfield to record the number of attributes that were not recorded due to configured limits being reached. (#1771) - The Jaeger exporter now reports dropped attributes for a Span event in the exported log. (#1771)
- Adds test to check BatchSpanProcessor ignores
OnEndandForceFlushpostShutdown. (#1772) - Extract resource attributes from the
OTEL_RESOURCE_ATTRIBUTESenvironment variable and merge them with theresource.Defaultresource as well as resources provided to theTracerProviderand metricController. (#1785) - Added
WithOSTyperesource configuration option to set OS (Operating System) type resource attribute (os.type). (#1788) - Added
WithProcess*resource configuration options to set Process resource attributes. (#1788)process.pidprocess.executable.nameprocess.executable.pathprocess.command_argsprocess.ownerprocess.runtime.nameprocess.runtime.versionprocess.runtime.description
- Adds
k8s.node.nameandk8s.node.uidattribute keys to thesemconvpackage. (#1789) - Added support for configuring OTLP/HTTP and OTLP/gRPC Endpoints, TLS Certificates, Headers, Compression and Timeout via Environment Variables. (#1758, #1769 and #1811)
OTEL_EXPORTER_OTLP_ENDPOINTOTEL_EXPORTER_OTLP_TRACES_ENDPOINTOTEL_EXPORTER_OTLP_METRICS_ENDPOINTOTEL_EXPORTER_OTLP_HEADERSOTEL_EXPORTER_OTLP_TRACES_HEADERSOTEL_EXPORTER_OTLP_METRICS_HEADERSOTEL_EXPORTER_OTLP_COMPRESSIONOTEL_EXPORTER_OTLP_TRACES_COMPRESSIONOTEL_EXPORTER_OTLP_METRICS_COMPRESSIONOTEL_EXPORTER_OTLP_TIMEOUTOTEL_EXPORTER_OTLP_TRACES_TIMEOUTOTEL_EXPORTER_OTLP_METRICS_TIMEOUTOTEL_EXPORTER_OTLP_CERTIFICATEOTEL_EXPORTER_OTLP_TRACES_CERTIFICATEOTEL_EXPORTER_OTLP_METRICS_CERTIFICATE
- Adds
otlpgrpc.WithTimeoutoption for configuring timeout to the otlp/gRPC exporter. (#1821)
Fixed
- The
Span.IsRecordingimplementation fromgo.opentelemetry.io/otel/sdk/tracealways returns false when not being sampled. (#1750) - The Jaeger exporter now correctly sets tags for the Span status code and message.
This means it uses the correct tag keys ("otel.status_code","otel.status_description") and does not set the status message as a tag unless it is set on the span. (#1761) - The Jaeger exporter now correctly records Span event's names using the
"event"key for a tag.
Additionally, this tag is overridden, as specified in the OTel specification, if the event contains an attribute with that key. (#1768) - Zipkin Exporter: Ensure mapping between OTel and Zipkin span data complies with the specification. (#1688)
- Fixed typo for default service name in Jaeger Exporter. (#1797)
- Fix flaky OTLP for the reconnnection of the client connection. (#1527, #1814)
Changed
- Span
RecordErrornow records anexceptionevent to comply with the semantic convention specification. (#1492) - Jaeger exporter was updated to use thrift v0.14.1. (#1712)
- Migrate from using internally built and maintained version of the OTLP to the one hosted at
go.opentelemetry.io/proto/otlp. (#1713) - Migrate from using
github.com/gogo/protobuftogoogle.golang.org/protobufto matchgo.opentelemetry.io/proto/otlp. (#1713) - The storage of a local or remote Span in a
context.Contextusing its SpanContext is unified to store just the current Span.
The Span's SpanContext can now self-identify as being remote or not.
This means that"go.opentelemetry.io/otel/trace".ContextWithRemoteSpanContextwill now overwrite any existing current Span, not just existing remote Spans, and make it the current Span in acontext.Context. (#1731) - Improve OTLP/gRPC exporter connection errors. (#1737)
- Information about a parent span context in a
"go.opentelemetry.io/otel/export/trace".SpanSnapshotis unified in a newParentfield.
The existingParentSpanIDandHasRemoteParentfields are removed in favor of this. (#1748) - The
ParentContextfield of the"go.opentelemetry.io/otel/sdk/trace".SamplingParametersis updated to hold acontext.Contextcontaining the parent span.
This changes it to makeSamplingParametersconform with the OpenTelemetry specification. (#1749) - Updated Jaeger Environment Variables:
JAEGER_ENDPOINT,JAEGER_USER,JAEGER_PASSWORD
toOTEL_EXPORTER_JAEGER_ENDPOINT,OTEL_EXPORTER_JAEGER_USER,OTEL_EXPORTER_JAEGER_PASSWORD
in compliance with OTel spec (#1752) - Modify
BatchSpanProcessor.ForceFlushto abort after timeout/cancellation. (#1757) - The
DroppedAttributeCountfield of theSpanin thego.opentelemetry.io/otelpackage now only represents the number of attributes dropped for the span itself.
It no longer is a conglomerate of itself, events, and link attributes that have been dropped. (#1771) - Make
ExportSpansin Jaeger Exporter honor context deadline. (#1773) - Modify Zipkin Exporter default service name, use default resouce's serviceName instead of empty. (#1777)
- The
go.opentelemetry.io/otel/sdk/export/tracepackage is merged into thego.opentelemetry.io/otel/sdk/tracepackage. (#1778) - The prometheus.InstallNewPipeline example is moved from comment to example test (#1796)
- The convenience functions for the stdout exporter have been updated to return the
TracerProviderimplementation and enable the shutdown of the exporter. (#1800) - Replace the flush function returned from the Jaeger exporter's convenience creation functions (
InstallNewPipelineandNewExportPipeline) with theTracerProviderimplementation they create.
This enables the caller to shutdown and flush using the relatedTracerProvidermethods. (#1822) - Updated the Jaeger exporter to have a default enpoint,
http://localhost:14250, for the collector. (#1824) - Changed the function
WithCollectorEndpointin the Jaeger exporter to no longer accept an endpoint as an argument.
The endpoint can be passed with theCollectorEndpointOptionusing theWithEndpointfunction or by setting theOTEL_EXPORTER_JAEGER_ENDPOINTenvironment variable value appropriately. (#1824) - The Jaeger exporter no longer batches exported spans itself, instead it relies on the SDK's
BatchSpanProcessorfor this functionality. (#1830) - The Jaeger exporter creation functions (
NewRawExporter,NewExportPipeline, andInstallNewPipeline) no longer accept the removedOptiontype as a variadic argument. (#1830)
Removed
- Removed Jaeger Environment variables:
JAEGER_SERVICE_NAME,JAEGER_DISABLED,JAEGER_TAGS
These environment variables will no longer be used to override values of the Jaeger exporter (#1752) - No longer set the links for a
Spaningo.opentelemetry.io/otel/sdk/tracethat is configured to be a new root.
This is unspecified behavior that the OpenTelemetry community plans to standardize in the future.
To prevent backwards incompatible changes when it is specified, these links are removed. (#1726) - Setting error status while recording error with Span from oteltest package. (#1729)
- The concept of a remote and local Span stored in a context is unified to just the current Span.
Because of this"go.opentelemetry.io/otel/trace".RemoteSpanContextFromContextis removed as it is no longer needed.
Instead,"go.opentelemetry.io/otel/trace".SpanContextFromContexcan be used to return the current Span.
If needed, that Span'sSpanContext.IsRemote()can then be used to determine if it is remote or not. (#1731) - The
HasRemoteParentfield of the"go.opentelemetry.io/otel/sdk/trace".SamplingParametersis removed.
This field is redundant to the information returned from theRemotemethod of theSpanContextheld in theParentContextfield. (#1749) - The
trace.FlagsDebugandtrace.FlagsDeferredconstants have been removed and will be localized to the B3 propagator. (#1770) - Remove
Processconfiguration,WithProcessFromEnvandProcessFromEnv, and type from the Jaeger exporter package.
The information that could be configured in theProcessstruct should be configured in aResourceinstead. (#1776, #1804) - Remove the
WithDisabledoption from the Jaeger exporter.
To disable the exporter unregister it from theTracerProvideror use a no-operationTracerProvider. (#1806) - Removed the functions
CollectorEndpointFromEnvandWithCollectorEndpointOptionFromEnvfrom the Jaeger exporter.
These functions for retrieving specific environment variable values are redundant of other internal functions and
are not intended for end user use. (#1824) - Removed the Jaeger exporter
WithSDKOptionsOption.
This option was used to set SDK options for the exporter creation convenience functions.
These functions are provided as a way to easily setup or install the exporter with what are deemed reasonable SDK settings for common use cases.
If the SDK needs to be configured differently, theNewRawExporterfunction and direct setup of the SDK with the desired settings should be used. (#1825) - The
WithBufferMaxCountandWithBatchMaxCount`Optio...
Release v0.19.0
Added
- Added
Marshalerconfig option tootlphttpto enable otlp over json or protobufs. (#1586) - A
ForceFlushmethod to the"go.opentelemetry.io/otel/sdk/trace".TracerProviderto flush all registeredSpanProcessors. (#1608) - Added
WithSamplerandWithSpanLimitsto tracer provider. (#1633, #1702) "go.opentelemetry.io/otel/trace".SpanContextnow has aremoteproperty, andIsRemote()predicate, that is true when theSpanContexthas been extracted from remote context data. (#1701)- A
Validmethod to the"go.opentelemetry.io/otel/attribute".KeyValuetype. (#1703)
Changed
trace.SpanContextis now immutable and has no exported fields. (#1573)trace.NewSpanContext()can be used in conjunction with thetrace.SpanContextConfigstruct to initialize a newSpanContextwhere all values are known.
- Update the
ForceFlushmethod signature to the"go.opentelemetry.io/otel/sdk/trace".SpanProcessorto accept acontext.Contextand return an error. (#1608) - Update the
Shutdownmethod to the"go.opentelemetry.io/otel/sdk/trace".TracerProviderreturn an error on shutdown failure. (#1608) - The SimpleSpanProcessor will now shut down the enclosed
SpanExporterand gracefully ignore subsequent calls toOnEndafterShutdownis called. (#1612) "go.opentelemetry.io/sdk/metric/controller.basic".WithPusheris replaced withWithExporterto provide consistent naming across project. (#1656)- Added non-empty string check for trace
Attributekeys. (#1659) - Add
descriptionto SpanStatus only whenStatusCodeis set to error. (#1662) - Jaeger exporter falls back to
resource.Default'sservice.nameif the exported Span does not have one. (#1673) - Jaeger exporter populates Jaeger's Span Process from Resource. (#1673)
- Renamed the
LabelSetmethod of"go.opentelemetry.io/otel/sdk/resource".ResourcetoSet. (#1692) - Changed
WithSDKtoWithSDKOptionsto accept variadic arguments ofTracerProviderOptiontype ingo.opentelemetry.io/otel/exporters/trace/jaegerpackage. (#1693) - Changed
WithSDKtoWithSDKOptionsto accept variadic arguments ofTracerProviderOptiontype ingo.opentelemetry.io/otel/exporters/trace/zipkinpackage. (#1693) "go.opentelemetry.io/otel/sdk/resource".NewWithAttributeswill now drop any invalid attributes passed. (#1703)"go.opentelemetry.io/otel/sdk/resource".StringDetectorwill now error if the produced attribute is invalid. (#1703)
Removed
- Removed
serviceNameparameter from Zipkin exporter and uses resource instead. (#1549) - Removed
WithConfigfrom tracer provider to avoid overriding configuration. (#1633) - Removed the exported
SimpleSpanProcessorandBatchSpanProcessorstructs.
These are now returned as a SpanProcessor interface from their respective constructors. (#1638) - Removed
WithRecord()fromtrace.SpanOptionwhen creating a span. (#1660) - Removed setting status to
Errorwhile recording an error as a span event inRecordError. (#1663) - Removed
jaeger.WithProcessconfiguration option. (#1673) - Removed
ApplyConfigmethod from"go.opentelemetry.io/otel/sdk/trace".TracerProviderand the now unneededConfigstruct. (#1693)
Fixed
- Jaeger Exporter: Ensure mapping between OTEL and Jaeger span data complies with the specification. (#1626)
SamplingResult.TraceStateis correctly propagated to a newly created span'sSpanContext. (#1655)- The
otel-collectorexample now correctly flushes metric events prior to shutting down the exporter. (#1678) - Do not set span status message in
SpanStatusFromHTTPStatusCodeif it can be inferred fromhttp.status_code. (#1681) - Synchronization issues in global trace delegate implementation. (#1686)
- Reduced excess memory usage by global
TracerProvider. (#1687)
Raw changes made between v0.18.0 and v0.19.0
2b4fa96 (HEAD -> main, tag: v0.19.0, tag: trace/v0.19.0, tag: sdk/v0.19.0, tag: sdk/metric/v0.19.0, tag: sdk/export/metric/v0.19.0, tag: oteltest/v0.19.0, tag: metric/v0.19.0, tag: exporters/trace/zipkin/v0.19.0, tag: exporters/trace/jaeger/v0.19.0, tag: exporters/stdout/v0.19.0, tag: exporters/otlp/v0.19.0, tag: exporters/metric/prometheus/v0.19.0, tag: example/zipkin/v0.19.0, tag: example/prometheus/v0.19.0, tag: example/prom-collector/v0.19.0, tag: example/otel-collector/v0.19.0, tag: example/opencensus/v0.19.0, tag: example/namedtracer/v0.19.0, tag: example/jaeger/v0.19.0, tag: bridge/opentracing/v0.19.0, tag: bridge/opencensus/v0.19.0, upstream/main, origin/main) Release v0.19.0 (#1710)
4beb704 sdk/trace: removing ApplyConfig and Config (#1693)
1d42be1 Rename WithDefaultSampler TracerProvider option to WithSampler and update docs (#1702)
860d5d8 Add flag to determine whether SpanContext is remote (#1701)
0fe65e6 Comply with OpenTelemetry attributes specification (#1703)
8888435 Bump google.golang.org/api from 0.40.0 to 0.41.0 in /exporters/trace/jaeger (#1700)
345f264 (global-docs) breaking(zipkin): removes servicName from zipkin exporter. (#1697)
62cbf0f Populate Jaeger's Span.Process from Resource (#1673)
28eaaa9 Add a test to prove the Tracer is safe for concurrent calls (#1665)
8b1be11 Rename resource pkg label vars and methods (#1692)
a1539d4 OpenCensus metric exporter bridge (#1444)
77aa218 Fix issue #1490, apply same logic as in the SDK (#1687)
9d3416c Fix synchronization issues in global trace delegate implementation (#1686)
58f69f0 Span status from HTTP code: Do not set status message if it can be inferred (#1681)
9c305bd Flush metric events prior to shutdown in OTLP example (#1678)
66b1135 Fix CHANGELOG (#1680)
90bd4ab Update employer information for maintainers (#1683)
3684191 Remove WithRecord() option from trace.SpanOption when starting a span (#1660)
65c7de2 Remove trace prefix from NoOp src files. (#1679)
e88a091 Make SpanContext Immutable (#1573)
d75e268 Avoid overriding configuration of tracer provider (#1633)
2b4d5ac Bump github.com/golangci/golangci-lint in /internal/tools (#1671)
150b868 Bump github.com/google/go-cmp from 0.5.4 to 0.5.5 (#1667)
76aa924 Fix the examples target info messaging (#1676)
a3aa9fd Bump github.com/itchyny/gojq from 0.12.1 to 0.12.2 in /internal/tools (#1672)
a5edd79 Removed setting error status while recording err as span event (#1663)
e981475 chore(zipkin): improves zipkin example to not to depend on timeouts. (#1566)
3dc91f2 Add ForceFlush method to TracerProvider (#1608)
bd0bba4 exporter: swap pusher for exporter (#1656)
5690485 Update the SimpleSpanProcessor (#1612)
a7f7aba SpanStatus description set only when status code is set to Error (#1662)
05252f4 Jaeger Exporter: Fix minor mapping discrepancies (#1626)
238e7c6 Add non-empty string check for attribute keys (#1659)
e9b9aca Add tests for propagation of Sampler Tracestate changes (#1655)
875a258 Add docs on when reviews should be cleared (#1556)
7153ef2 Add HTTP/JSON to the otlp exporter (#1586)
62e2a0f Unexport the simple and batch SpanProcessors (#1638)
992837f Add TracerProvider tests to oteltest harness (#1607)
Release v0.18.0
Added
- Added
resource.Default()for use with meter and tracer providers. (#1507) AttributePerEventCountLimitandAttributePerLinkCountLimitforSpanLimits. (#1535)- Added
Keys()method topropagation.TextMapCarrierandpropagation.HeaderCarrierto adapthttp.Headerto this interface. (#1544) - Added
codeattributes togo.opentelemetry.io/otel/semconvpackage. (#1558) - Compatibility testing suite in the CI system for the following systems. (#1567)
OS Go Version Architecture Ubuntu 1.15 amd64 Ubuntu 1.14 amd64 Ubuntu 1.15 386 Ubuntu 1.14 386 MacOS 1.15 amd64 MacOS 1.14 amd64 Windows 1.15 amd64 Windows 1.14 amd64 Windows 1.15 386 Windows 1.14 386
Changed
- Replaced interface
oteltest.SpanRecorderwith its existing implementation
StandardSpanRecorder(#1542). - Default span limit values to 128. (#1535)
- Rename
MaxEventsPerSpan,MaxAttributesPerSpanandMaxLinksPerSpantoEventCountLimit,AttributeCountLimitandLinkCountLimit, and move these fields intoSpanLimits. (#1535) - Renamed the
otel/labelpackage tootel/attribute. (#1541) - Vendor the Jaeger exporter's dependency on Apache Thrift. (#1551)
- Parallelize the CI linting and testing. (#1567)
- Stagger timestamps in exact aggregator tests. (#1569)
- Changed all examples to use
WithBatchTimeout(5 * time.Second)rather thanWithBatchTimeout(5). (#1621) - Prevent end-users from implementing some interfaces (#1575)
"otel/exporters/otlp/otlphttp".Option
"otel/exporters/stdout".Option
"otel/oteltest".Option
"otel/trace".TracerOption
"otel/trace".SpanOption
"otel/trace".EventOption
"otel/trace".LifeCycleOption
"otel/trace".InstrumentationOption
"otel/sdk/resource".Option
"otel/sdk/trace".ParentBasedSamplerOption
"otel/sdk/trace".ReadOnlySpan
"otel/sdk/trace".ReadWriteSpan
Removed
- Removed attempt to resample spans upon changing the span name with
span.SetName(). (#1545) - The
test-benchmarkis no longer a dependency of theprecommitmake target. (#1567) - Removed the
test-386make target.
This was replaced with a full compatibility testing suite (i.e. multi OS/arch) in the CI system. (#1567)
Fixed
- The sequential timing check of timestamps in the stdout exporter are now setup explicitly to be sequential (#1571). (#1572)
- Windows build of Jaeger tests now compiles with OS specific functions (#1576). (#1577)
- The sequential timing check of timestamps of go.opentelemetry.io/otel/sdk/metric/aggregator/lastvalue are now setup explicitly to be sequential (#1578). (#1579)
- Validate tracestate header keys with vedors according to the W3C TraceContext specification (#1475). (#1581)
- The OTLP exporter includes related labels for translations of a GaugeArray (#1563). (#1570)
Raw changes made between v0.17.0 and v0.18.0
bb4c297 Pre release v0.18.0 (#1635)
712c3dc Fix makefile ci target and coverage test packages (#1634)
841d2a5 Rename local var new to not collide with builtin (#1610)
13938ab Update SpanProcessor docs (#1611)
e25503a Add compatibility tests to CI (#1567)
1519d95 Use reasonable interval in sdktrace.WithBatchTimeout (#1621)
7d4496e Pass metric labels when transforming to gaugeArray (#1570)
6d4a5e0 Bump google.golang.org/grpc from 1.35.0 to 1.36.0 in /exporters/otlp (#1619)
a93393a Bump google.golang.org/grpc in /example/prom-collector (#1620)
e499ca8 Fix validation for tracestate with vendor and add tests (#1581)
43886e5 Make timestamps sequential in lastvalue agg check (#1579)
37688ef revent end-users from implementing some interfaces (#1575)
85e696d Updating documentation with an working example for creating NewExporter (#1513)
562eb28 Unify the Added sections of the unreleased changes (#1580)
c4cf1af Fix Windows build of Jaeger tests (#1577)
4a163be Fix stdout TestStdoutTimestamp failure with sleep (#1572)
bd4701e Stagger timestamps in exact aggregator tests (#1569)
b94cd4b add code attributes to semconv package (#1558)
78c06ce Update docs from gitter to slack for communication (#1554)
1307c91 Remove vendor exclude from license-check (#1552)
5d2636e Bump github.com/golangci/golangci-lint in /internal/tools (#1565)
d7aff47 Vendor Thrift dependency (#1551)
298c5a1 Update span limits to conform with OpenTelemetry specification (#1535)
ecf65d7 Rename otel/label -> otel/attribute (#1541)
1b5b662 Remove resampling on span.SetName (#1545)
8da5299 fix: grpc reconnection (#1521)
3bce9c9 Add Keys() method to propagation.TextMapCarrier (#1544)
0b1a1c7 Make oteltest.SpanRecorder into a concrete type (#1542)
7d0e3e5 SDK span no modification after ended (#1543)
7de3b58 Remove extra labels types (#1314)
73194e4 Bump google.golang.org/api from 0.39.0 to 0.40.0 in /exporters/trace/jaeger (#1536)
8fae0a6 Create resource.Default() with required attributes/default values (#1507)
Release v0.17.0
Changed
- Rename project default branch from
mastertomain. - Reverse order in which
Resourceattributes are merged, per change in spec. (#1501) - Add tooling to maintain "replace" directives in go.mod files automatically. (#1528)
- Create new modules: otel/metric, otel/trace, otel/oteltest, otel/sdk/export/metric, otel/sdk/metric (#1528)
- Move metric-related public global APIs from otel to otel/metric/global. (#1528)
9b242bc (upstream/main, origin/main, main) Organize API into Go modules based on stability and dependencies (#1528)
e50a1c8 Bump actions/cache from v2 to v2.1.4 (#1518)
a6aa7f0 Bump google.golang.org/api from 0.38.0 to 0.39.0 in /exporters/trace/jaeger (#1517)
38efc87 Code Improvement - Error strings should not be capitalized (#1488)
6b34050 Update default branch name (#1505)
b39fd05 nit: Fix comment to be up-to-date (#1510)
186c295 Fix golint error of package comment form (#1487)
9308d66 Bump google.golang.org/api from 0.37.0 to 0.38.0 in /exporters/trace/jaeger (#1506)
1952d7b Reverse order of attribute precedence when merging two Resources (#1501)
ad7b471 Remove build flags for runtime/trace support (#1498)
4bf4b69 Remove inaccurate and unnecessary import comment (#1481)
7e19eb6 Bump google.golang.org/api from 0.36.0 to 0.37.0 in /exporters/trace/jaeger (#1504)
c6a4406 Bump github.com/golangci/golangci-lint in /internal/tools (#1503)
9524ac0 (upstream/master, origin/master, origin/HEAD) Update workflows to include main branch as trigger (#1497)
c066f15 Bump github.com/gogo/protobuf from 1.3.1 to 1.3.2 in /internal/tools (#1478)
894e024 Bump github.com/golangci/golangci-lint in /internal/tools (#1477)
71ffba3 Bump google.golang.org/grpc from 1.34.0 to 1.35.0 in /exporters/otlp (#1471)
515809a Bump github.com/itchyny/gojq from 0.12.0 to 0.12.1 in /internal/tools (#1472)
3e96ad1 gitignore: remove unused example path (#1474)
c562277 Histogram aggregator functional options (#1434)
0df8cd6 Rename Makefile.proto to avoid interpretation as proto file (#1468)
979ff51 Bump github.com/stretchr/testify from 1.6.1 to 1.7.0 (#1453)
1df8b3b Bump github.com/gogo/protobuf from 1.3.1 to 1.3.2 in /exporters/otlp (#1456)
4c30a90 Bump github.com/stretchr/testify from 1.6.1 to 1.7.0 in /sdk (#1455)
5a9f8f6 Bump github.com/stretchr/testify from 1.6.1 to 1.7.0 in /exporters/stdout (#1454)
7786f34 Bump github.com/stretchr/testify from 1.6.1 to 1.7.0 in /exporters/trace/zipkin (#1457)
4352a7a Bump github.com/stretchr/testify from 1.6.1 to 1.7.0 in /exporters/otlp (#1460)
6990b3b Bump github.com/stretchr/testify from 1.6.1 to 1.7.0 in /exporters/metric/prometheus (#1461)
7af40d2 Bump github.com/stretchr/testify from 1.6.1 to 1.7.0 in /exporters/trace/jaeger (#1463)
f16f189 Bump google.golang.org/grpc in /example/otel-collector (#1465)
fe363be Move Span Event to API (#1452)
4392224 Bump google.golang.org/grpc in /example/prom-collector (#1466)
Release v0.16.0
Added
- Add the
ReadOnlySpanandReadWriteSpaninterfaces to provide better control for accessing span data. (#1360) NewGRPCDriverfunction returns aProtocolDriverthat maintains a single gRPC connection to the collector. (#1369)- Added documentation about the project's versioning policy. (#1388)
- Added
NewSplitDriverfor OTLP exporter that allows sending traces and metrics to different endpoints. (#1418) - Added codeql worfklow to GitHub Actions (#1428)
- Added Gosec workflow to GitHub Actions (#1429)
- Add new HTTP driver for OTLP exporter in
exporters/otlp/otlphttp. Currently it only supports the binary protobuf payloads. (#1420)
Changed
- Rename
internal/testingtointernal/internaltest. (#1449) - Rename
export.SpanDatatoexport.SpanSnapshotand use it only for exporting spans. (#1360) - Store the parent's full
SpanContextrather than just its span ID in thespanstruct. (#1360) - Improve span duration accuracy. (#1360)
- Migrated CI/CD from CircleCI to GitHub Actions (#1382)
- Remove duplicate checkout from GitHub Actions workflow (#1407)
- Metric
arrayaggregator renamedexactto match itsaggregation.Kind(#1412) - Metric
exactaggregator includes per-point timestamps (#1412) - Metric stdout exporter uses MinMaxSumCount aggregator for ValueRecorder instruments (#1412)
NewExporterfromexporters/otlpnow takes aProtocolDriveras a parameter. (#1369)- Many OTLP Exporter options became gRPC ProtocolDriver options. (#1369)
- Unify endpoint API that related to OTel exporter. (#1401)
- Optimize metric histogram aggregator to re-use its slice of buckets. (#1435)
- Metric aggregator Count() and histogram Bucket.Counts are consistently
uint64. (1430) SamplingResultnow passed aTracestatefrom the parentSpanContext(#1432)- Moved gRPC driver for OTLP exporter to
exporters/otlp/otlpgrpc. (#1420) - The
TraceContextpropagator now correctly propagatesTraceStatethrough theSpanContext. (#1447) - Metric Push and Pull Controller components are combined into a single "basic" Controller:
WithExporter()andStart()to configure Push behaviorStart()is optional; useCollect()andForEach()for Pull behaviorStart()andStop()accept Context. (#1378)
Removed
- Remove
errUninitializedSpanas its only usage is now obsolete. (#1360) - Remove Metric export functionality related to quantiles and summary data points: this is not specified (#1412)
- Remove DDSketch metric aggregator; our intention is to re-introduce this as an option of the histogram aggregator after new OTLP histogram data types are released (#1412)
Fixed
BatchSpanProcessor.Shutdown()will now shutdown underlyingexport.SpanExporter. (#1443)
Raw changes made between v0.15.0 and v0.16.0
0aadfb2 Prepare release v0.16.0 (#1464)
207587b Metric histogram aggregator: Swap in SynchronizedMove to avoid allocations (#1435)
c29c6fd Shutdown underlying span exporter while shutting down BatchSpanProcessor (#1443)
dfece3d Combine the Push and Pull metric controllers (#1378)
74deedd Handle tracestate in TraceContext propagator (#1447)
49f699d Remove Quantile aggregation, DDSketch aggregator; add Exact timestamps (#1412)
9c94941 Rename internal/testing to internal/internaltest (#1449)
8d80981 Move gRPC driver to a subpackage and add an HTTP driver (#1420)
9332af1 Bump github.com/golangci/golangci-lint in /internal/tools (#1445)
5ed96e9 Update exporters/otlp Readme.md (#1441)
bc9cb5e Switch CircleCI badge to GitHub Actions (#1440)
716ad08 Remove CircleCI config (#1439)
0682db1 Adding Security Workflows to GitHub Actions (2/2): gosec workflow (#1429)
11f732b Adding Security Workflows to GitHub Actions (1/2): codeql workflow (#1428)
40f1c00 Add Tracestate into the SamplingResult struct (#1432)
db06c8d Flush metric events before shutdown in collector example (#1438)
f6f458e Fix golint issue caused by typo in trace.go (#1436)
fe9d1f7 Use uint64 Count consistently in metric aggregation (#1430)
3a337d0 Bump github.com/golangci/golangci-lint in /internal/tools (#1433)
1e4c832 cleanup: drop the removed examples in gitignore (#1427)
5c9221c Unify endpoint API that related to OTel exporter (#1401)
045c3ff Build scripts: Replace mapfile with read loop for old bash versions (#1425)
2def8c3 Add Versioning Documentation (#1388)
6bcd108 Bump github.com/itchyny/gojq from 0.11.2 to 0.12.0 in /internal/tools (#1424)
38e76ef Add a split protocol driver for otlp exporter (#1418)
439cd31 Add TraceState to SpanContext in API (#1340)
3521526 Split connection management away from exporter (#1369)
add9d93 Bump github.com/prometheus/client_golang from 1.8.0 to 1.9.0 in /exporters/metric/prometheus (#1414)
93d426a Add @dashpole as a project Approver (#1410)
6fe20ef Fix small typo (#1409)
b22d0d7 Mention the getting started guide (#1406)
3fb80fb Fix duplicate checkout action in GitHub workflow (#1407)
2051927 Correct CI workflow syntax (#1403)
f11a86f Fix typo in comment (#1402)
bdf87a7 Migrate CircleCI ci.yml workflow to GitHub Actions (#1382)
4e59dd1 Bump google.golang.org/grpc from 1.32.0 to 1.34.0 in /example/otel-collector (#1400)
83513f7 Bump google.golang.org/api from 0.32.0 to 0.36.0 in /exporters/trace/jaeger (#1398)
a354fc4 Bump github.com/prometheus/client_golang from 1.7.1 to 1.8.0 in /exporters/metric/prometheus (#1397)
3528e42 Bump google.golang.org/grpc from 1.32.0 to 1.34.0 in /exporters/otlp (#1396)
af114ba Call otel.Handle with non-nil errors (#1384)
c3c4273 Add RO/RW span interfaces (#1360)
Release v0.15.0
Added
- The
WithIDGeneratorTracerProviderOptionis added to thego.opentelemetry.io/otel/tracepackage to configure anIDGeneratorfor theTracerProvider. (#1363)
Changed
- The Zipkin exporter now uses the Span status code to determine. (#1328)
NewExporterandStartfunctions ingo.opentelemetry.io/otel/exporters/otlpnow receivecontext.Contextas a first parameter. (#1357)- Move the OpenCensus example into
exampledirectory. (#1359) - Moved the SDK's
internal.IDGeneratorinterface in to thesdk/tracepackage to enable support for externally-defined ID generators. (#1363) - Bump
github.com/google/go-cmpfrom 0.5.3 to 0.5.4 (#1374) - Bump
github.com/golangci/golangci-lintin/internal/tools(#1375)
Fixed
- Metric SDK
SumObserverandUpDownSumObserverinstruments correctness fixes. (#1381)
Raw changes made between v0.14.0 and v0.15.0
61e07a0 (HEAD -> master, tag: v0.15.0, tag: sdk/v0.15.0, tag: exporters/trace/zipkin/v0.15.0, tag: exporters/trace/jaeger/v0.15.0, tag: exporters/stdout/v0.15.0, tag: exporters/otlp/v0.15.0, tag: exporters/metric/prometheus/v0.15.0, tag: example/zipkin/v0.15.0, tag: example/prometheus/v0.15.0, tag: example/otel-collector/v0.15.0, tag: example/opencensus/v0.15.0, tag: example/namedtracer/v0.15.0, tag: example/jaeger/v0.15.0, tag: example/basic/v0.15.0, tag: bridge/opentracing/v0.15.0, tag: bridge/opencensus/v0.15.0, upstream/master, origin/master, origin/HEAD) Release v0.15.0 (#1392)
599c080 Fix typo in readme (#1390)
eb28005 Metric Accumulator fix for SumObservers (#1381)
970755b Enable support for externally-defined ID generators (#1363)
0021ab0 Rework proto generation (#1371)
787e3f4 chore(zipkin-exporter): relay on the status code for the request but still read the response body. (#1328)
66db2d8 (johananl/master) Build examples last (#1370)
958041d Bump github.com/golangci/golangci-lint in /internal/tools (#1375)
e1ff2d1 Bump github.com/google/go-cmp from 0.5.3 to 0.5.4 (#1374)
5d0372d Fix typo in comment (#1377)
55ff277 Fix golint issue caused by typo (#1372)
5a728db Another batch of cleanups in otlp exporter (#1357)
e081978 Move opencensus example to the example directory (#1359)