Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added
OTEL_EXPORTER_ZIPKIN_ENDPOINT
environment variable to specify zipkin collector endpoint. (support zipkin exporter endpoint env #2490)TracerProvider
s, andTracer
s for debugging.To enable use a logger with Verbosity (V level)
>=1
. (Debug Logging for sdk/trace #2500)The following environment variables are used. (Add env support for batch span processor #2515)
OTEL_BSP_SCHEDULE_DELAY
OTEL_BSP_EXPORT_TIMEOUT
OTEL_BSP_MAX_QUEUE_SIZE
.OTEL_BSP_MAX_EXPORT_BATCH_SIZE
Changed
Resource
attributes in theTags
field. (Export resource attributes from zipkin exporter #2589)Deprecated
go.opentelemetry.io/otel/sdk/export/metric
.Use the
go.opentelemetry.io/otel/sdk/metric
module instead. (Remove sdk/export/metric module, embed into the sdk/metric #2382)"go.opentelemetry.io/otel/sdk/metric".AtomicFieldOffsets
. (Deprecate and add warning to remove AtomicFieldOffsets, unnecessary public func #2445)Fixed
otlpmetric.Client
interface'sUploadMetrics
method to accept a singleResourceMetrics
instead of a slice of them. (change UploadMetrics signature from slice to single Resource #2491)+inf
bucket. (example/prometheus
: histogram has only +Inf buckets #2419, fix specify explicit buckets in example #2493)NewMember
and not also when adding it to the baggage itself. (Validate members once, inNewMember
#2522)go.opentelemetry.io/otel/sdk/trace
package when capacity is reached is fixed to be in compliance with the OpenTelemetry specification.Instead of dropping the least-recently-used attribute, the last added attribute is dropped.
This drop order still only applies to attributes with unique keys not already contained in the span.
If an attribute is added with a key already contained in the span, that attribute is updated to the new value being added. (Replace recordingSpan attributes implementation with slice of attributes #2576)
Removed
go.opentelemetry.io/proto/otlp
fromv0.11.0
tov0.12.0
. This version removes a number of deprecated methods. (Bump go.opentelemetry.io/proto/otlp from 0.11.0 to 0.12.0 #2546)Metric.GetIntGauge()
Metric.GetIntHistogram()
Metric.GetIntSum()