-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release v1.15.0-rc.2/v0.38.0-rc.2 #3923
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MrAlias
requested review from
jmacd,
Aneurysm9,
evantorrie,
XSAM,
dashpole,
MadVikingGod,
pellared,
hanyuancheung and
dmathieu
as code owners
March 22, 2023 21:51
9 tasks
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #3923 +/- ##
=======================================
- Coverage 81.8% 81.7% -0.1%
=======================================
Files 170 170
Lines 12909 12909
=======================================
- Hits 10561 10559 -2
- Misses 2129 2131 +2
Partials 219 219
|
Aneurysm9
approved these changes
Mar 22, 2023
MadVikingGod
approved these changes
Mar 23, 2023
pellared
approved these changes
Mar 23, 2023
pellared
reviewed
Mar 23, 2023
I created two doc-related PRs that may be good to merge before the release: |
Co-authored-by: Robert Pająk <pellared@hotmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This is a release candidate for the v1.15.0/v0.38.0 release. That release will include the
v1
release of the OpenTelemetry Go metric API and will provide stability guarantees of that API. See our versioning policy for more information about these stability guarantees.Added
WithHostID
option togo.opentelemetry.io/otel/sdk/resource
. (add host.id to resource auto-detection #3812)WithoutTimestamps
option togo.opentelemetry.io/otel/exporters/stdout/stdoutmetric
to sets all timestamps to zero. (New stdoutmetric encoder with ignore timestamp #3828)Exemplar
type is added togo.opentelemetry.io/otel/sdk/metric/metricdata
. Both theDataPoint
andHistogramDataPoint
types from that package have a new field ofExemplars
containing the sampled exemplars for their timeseries. (AddExemplar
to metricdata package #3849)go.opentelemetry.io/otel/sdk/metric/instrument
. (Split metric configuration down to instrument #3895)V(1)
. (Enhance internal logging #3900)Changed
Set
usingNewSet
orNewSetWithFiltered
ingo.opentelemetry.io/otel/attribute
. (Pool sortables used to create attribute sets #3832)go.opentelemetry.io/otel/sdk/metric
. (Pool sortables used to create attribute sets #3832)WithDeferredSetup
andSkipContextSetup
in OpenTracing bridge. (Avoid creating new references onWithDeferredSetup
for every span #3833)New
andDetect
functions fromgo.opentelemetry.io/otel/sdk/resource
return errors that wrap underlying errors instead of just containing the underlying error strings. (Wrap errors returned fromDetect
andNew
insdk/resource
#3844)Histogram
andHistogramDataPoint
are redefined with a generic argument of[N int64 | float64]
ingo.opentelemetry.io/otel/sdk/metric/metricdata
. (AddExemplar
to metricdata package #3849)Export
interface fromgo.opentelemetry.io/otel/sdk/metric
accepts a*ResourceMetrics
instead ofResourceMetrics
. (Update the metricExport
interface to accept a*ResourceMetrics
instead ofResourceMetrics
#3853)Asynchronous
toObservable
ingo.opentelemetry.io/otel/metric/instrument
. (Remove Synchronous and rename Asynchronous #3892)Int64ObserverOption
toInt64ObservableOption
ingo.opentelemetry.io/otel/metric/instrument
. (Split metric configuration down to instrument #3895)Float64ObserverOption
toFloat64ObservableOption
ingo.opentelemetry.io/otel/metric/instrument
. (Split metric configuration down to instrument #3895)V(4)
, the verbosity level of debug toV(8)
. (Enhance internal logging #3900)Fixed
TracerProvider
consistently doesn't allow to register aSpanProcessor
after shutdown. (Make TracerProvider not allow to register a SpanProcessor after shutdown #3845)Removed
go.opentelemetry.io/otel/metric/global
package is removed. (Remove the deprecatedotel/metric/global
pkg #3829)Synchronous
interface ingo.opentelemetry.io/otel/metric/instrument
was removed. (Remove Synchronous and rename Asynchronous #3892)Float64ObserverConfig
andNewFloat64ObserverConfig
ingo.opentelemetry.io/otel/sdk/metric/instrument
. Use the addedfloat64
instrument configuration instead. (Split metric configuration down to instrument #3895)Int64ObserverConfig
andNewInt64ObserverConfig
ingo.opentelemetry.io/otel/sdk/metric/instrument
. Use the addedint64
instrument configuration instead. (Split metric configuration down to instrument #3895)NewNoopMeter
function ingo.opentelemetry.io/otel/metric
, useNewMeterProvider().Meter("")
instead. (Move metric No-Op tometric/noop
#3893)