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.
Changed
export.ExportKind
,export.ExportKindSelector
types have been renamed toaggregation.Temporality
andaggregation.TemporalitySelector
respectively to keep in line with current specification and protocol along with built-in selectors (e.g.,aggregation.CumulativeTemporalitySelector
, ...). (Metrics: Rename sdk/export/metric.ExportKind to aggregation.Temporality #2274)Exporter
interface now requires aTemporalitySelector
method instead of anExportKindSelector
. (Metrics: Rename sdk/export/metric.ExportKind to aggregation.Temporality #2274)metric/sdkapi
package has been created to relocate the API-to-SDK interface:metric
tometric/sdkapi
:Descriptor
,MeterImpl
,InstrumentImpl
,SyncImpl
,BoundSyncImpl
,AsyncImpl
,AsyncRunner
,AsyncSingleRunner
, andAsyncBatchRunner
Observation
,Measurement
.sdkapi.NewNoopAsyncInstrument()
andsdkapi.NewNoopSyncInstrument()
are provided instead. (Metrics: Move the non-API types intosdkapi
#2271)BatchSpanProcessor
to export all queued spans whenForceFlush
is called. (Guarantee ForceFlush of BatchSpanProcessor will export all ended spans #2080, Empty queued spans when ForceFlush called #2335)Added
"go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc".WithGRPCConn
option so the exporter can reuse an existing gRPC connection. (allow otlp clients to use existing grpc connection #2002)schema
module to help parse Schema Files in OTEP 0152 format. (Add ability to parse Schema files according to OTEP 0152 #2267)MapCarrier
to thego.opentelemetry.io/otel/propagation
package to hold propagated coss-cutting concerns as amap[string]string
held in memory. (Add MapCarrier #2334)