chore(deps): update opentelemetry-go monorepo to v0.10.0 #6

Open
kjuulh wants to merge 1 commits from renovate/opentelemetry-go-monorepo into main
Owner

This PR contains the following updates:

Package Type Update Change
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc replace minor v0.0.0-20240518090000-14441aefdf88 -> v0.10.0
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp replace minor v0.3.0 -> v0.10.0
go.opentelemetry.io/otel/log replace minor v0.3.0 -> v0.10.0
go.opentelemetry.io/otel/sdk/log replace minor v0.3.0 -> v0.10.0

Release Notes

open-telemetry/opentelemetry-go (go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc)

v0.10.0

Compare Source

This release migrates the default OpenTelemetry SDK into its own Go module, decoupling the SDK from the API and reducing dependencies for instrumentation packages.

Added
  • The Zipkin exporter now has NewExportPipeline and InstallNewPipeline constructor functions to match the common pattern.
    These function build a new exporter with default SDK options and register the exporter with the global package respectively. (#​944)
  • Add propagator option for gRPC instrumentation. (#​986)
  • The testtrace package now tracks the trace.SpanKind for each span. (#​987)
Changed
  • Replace the RegisterGlobal Option in the Jaeger exporter with an InstallNewPipeline constructor function.
    This matches the other exporter constructor patterns and will register a new exporter after building it with default configuration. (#​944)
  • The trace (go.opentelemetry.io/otel/exporters/trace/stdout) and metric (go.opentelemetry.io/otel/exporters/metric/stdout) stdout exporters are now merged into a single exporter at go.opentelemetry.io/otel/exporters/stdout.
    This new exporter was made into its own Go module to follow the pattern of all exporters and decouple it from the go.opentelemetry.io/otel module. (#​956, #​963)
  • Move the go.opentelemetry.io/otel/exporters/test test package to go.opentelemetry.io/otel/sdk/export/metric/metrictest. (#​962)
  • The go.opentelemetry.io/otel/api/kv/value package was merged into the parent go.opentelemetry.io/otel/api/kv package. (#​968)
    • value.Bool was replaced with kv.BoolValue.
    • value.Int64 was replaced with kv.Int64Value.
    • value.Uint64 was replaced with kv.Uint64Value.
    • value.Float64 was replaced with kv.Float64Value.
    • value.Int32 was replaced with kv.Int32Value.
    • value.Uint32 was replaced with kv.Uint32Value.
    • value.Float32 was replaced with kv.Float32Value.
    • value.String was replaced with kv.StringValue.
    • value.Int was replaced with kv.IntValue.
    • value.Uint was replaced with kv.UintValue.
    • value.Array was replaced with kv.ArrayValue.
  • Rename Infer to Any in the go.opentelemetry.io/otel/api/kv package. (#​972)
  • Rename go.opentelemetry.io/otel/sdk/metric/aggregator/test package to go.opentelemetry.io/otel/sdk/metric/aggregator/aggregatortest. (#​980)
  • Make the SDK into its own Go module called go.opentelemetry.io/otel/sdk. (#​985)
  • Changed the default trace Sampler from AlwaysOn to ParentOrElse(AlwaysOn). (#​989)
Removed
  • The IndexedAttribute function from the go.opentelemetry.io/otel/api/label package was removed in favor of IndexedLabel which it was synonymous with. (#​970)
Fixed
  • Bump github.com/golangci/golangci-lint from 1.28.3 to 1.29.0 in /tools. (#​953)
  • Bump github.com/google/go-cmp from 0.5.0 to 0.5.1. (#​957)
  • Use global.Handle for span export errors in the OTLP exporter. (#​946)
  • Correct Go language formatting in the README documentation. (#​961)
  • Remove default SDK dependencies from the go.opentelemetry.io/otel/api package. (#​977)
  • Remove default SDK dependencies from the go.opentelemetry.io/otel/instrumentation package. (#​983)
  • Move documented examples for go.opentelemetry.io/otel/instrumentation/grpctrace interceptors into Go example tests. (#​984)

Raw changes made between v0.9.0 and v0.10.0

fd61d2e (HEAD -> master, tag: v0.10.0, tag: sdk/v0.10.0, tag: exporters/trace/zipkin/v0.10.0, tag: exporters/trace/jaeger/v0.10.0, tag: exporters/stdout/v0.10.0, tag: exporters/otlp/v0.10.0, tag: exporters/metric/prometheus/v0.10.0, tag: example/zipkin/v0.10.0, tag: example/prometheus/v0.10.0, tag: example/otel-collector/v0.10.0, tag: example/namedtracer/v0.10.0, tag: example/jaeger/v0.10.0, tag: example/http/v0.10.0, tag: example/grpc/v0.10.0, tag: example/basic/v0.10.0, upstream/master, origin/master, origin/HEAD) Release v0.10.0 (#​990)
1299210 Change default Sampler to ParentOrElse(AlwaysOn) (#​989)
fa883d4 testtrace.Span tracks and returns its SpanKind. (#​987)
26e85e1 Add propagator option for gRPC instrumentation (#​986)
8fbaa9d Make the SDK into its own Go module (#​985)
d6bf2fb Decouple instrumentation from SDK (#​983)
42c2a86 Move grpctrace examples from comment to code (#​984)
e06c9da Rename aggregator/test to aggregatortest (#​980)
67a2c23 Update Changelog (#​982)
2833212 Decouple API from SDK (#​977)
7f1dc4a Update Contributing style guide section (#​971)
6917167 Rename kv.Infer to kv.Any (#​969) (#​972)
c9c8137 Remove IndexedAttribute from api/label (#​970)
3b01a85 Make the stdout exporter a package (#​963)
c6611f4 Move export test package to SDK (#​962)
d99ac09 Remove sub-package value from kv (#​968)
fd54b6c paivagustavo to emeritus for now (#​960)
7918070 README: fixup spaces on code example (#​961)
452256c Unify trace and metric stdout exporters (#​956)
f31d8ec Unify trace and metric exporter helpers (#​944)
c5d77d2 Bump github.com/google/go-cmp from 0.5.0 to 0.5.1 (#​957)
c8b657e use global handler for span export err in otlp (#​946)
f6b51df Bump github.com/golangci/golangci-lint from 1.28.3 to 1.29.0 in /tools (#​953)

v0.9.0

Compare Source

This release includes a new Resource auto-detector interface and a generation of the OTLP locally.

Added
  • A new Resource Detector interface is included to allow resources to be automatically detected and included. (#​939)
  • A Detector to automatically detect resources from an environment variable. (#​939)
  • Github action to generate protobuf Go bindings locally in internal/opentelemetry-proto-gen. (#​938)
  • OTLP .proto files from open-telemetry/opentelemetry-proto imported as a git submodule under internal/opentelemetry-proto. References to github.com/open-telemetry/opentelemetry-proto changed to go.opentelemetry.io/otel/internal/opentelemetry-proto-gen. (#​942)
Changed
  • Non-nil value structs for key-value pairs will be marshalled using JSON rather than Sprintf. (#​948)
Removed
  • Removed dependency on github.com/open-telemetry/opentelemetry-collector. (#​943)

Raw changes made between v0.8.0 and v0.9.0

58e50e2 (HEAD -> master, tag: v0.9.0, tag: exporters/trace/zipkin/v0.9.0, tag: exporters/trace/jaeger/v0.9.0, tag: exporters/otlp/v0.9.0, tag: exporters/metric/prometheus/v0.9.0, tag: example/zipkin/v0.9.0, tag: example/prometheus/v0.9.0, tag: example/otel-collector/v0.9.0, tag: example/namedtracer/v0.9.0, tag: example/jaeger/v0.9.0, tag: example/http/v0.9.0, tag: example/grpc/v0.9.0, tag: example/basic/v0.9.0, upstream/master, origin/master, origin/HEAD) Release v0.9.0 (#​952)
e6537c6 Fix typo in comment (#​951)
99c2998 OT resource detector (#​939)
b2b23e1 supports marshaling values as json (#​948)
d6ad4d4 [jaeger] Stop ignoring uints (#​945)
4f3fab3 Remove github.com/open-telemetry/opentelemetry-collector dependency (#​943)
166c703 Import open-telemetry/opentelemetry-proto submodule and generate protobuf bindings locally (#​942)
dd79483 Create protobuf generation GitHub action (#​938)
31dd06a Bump github.com/golangci/golangci-lint from 1.28.2 to 1.28.3 in /tools (#​936)
9edcad3 Backport tag script from contrib repo (#​934)

v0.8.0

Compare Source

This release includes additions and changes to implements the v0.6.0 OpenTelemetry specification and other fixes.

Added
  • The B3Encoding type to represent the B3 encoding(s) the B3 propagator can inject.
    A value for HTTP supported encodings (Multiple Header: MultipleHeader, Single Header: SingleHeader) are included. (#​882)
  • The FlagsDeferred trace flag to indicate if the trace sampling decision has been deferred. (#​882)
  • The FlagsDebug trace flag to indicate if the trace is a debug trace. (#​882)
  • Add peer.service semantic attribute. (#​898)
  • Add database-specific semantic attributes. (#​899)
  • Add semantic convention for faas.coldstart and container.id. (#​909)
  • Add http content size semantic conventions. (#​905)
  • Include http.request_content_length in HTTP request basic attributes. (#​905)
  • Add semantic conventions for operating system process resource attribute keys. (#​919)
  • The Jaeger exporter now has a WithBatchMaxCount option to specify the maximum number of spans sent in a batch. (#​931)
Changed
  • Update CONTRIBUTING.md to ask for updates to CHANGELOG.md with each pull request. (#​879)
  • Use lowercase header names for B3 Multiple Headers. (#​881)
  • The B3 propagator SingleHeader field has been replaced with InjectEncoding.
    This new field can be set to combinations of the B3Encoding bitmasks and will inject trace information in these encodings.
    If no encoding is set, the propagator will default to MultipleHeader encoding. (#​882)
  • The B3 propagator now extracts from either HTTP encoding of B3 (Single Header or Multiple Header) based on what is contained in the header.
    Preference is given to Single Header encoding with Multiple Header being the fallback if Single Header is not found or is invalid.
    This behavior change is made to dynamically support all correctly encoded traces received instead of having to guess the expected encoding prior to receiving. (#​882)
  • Extend semantic conventions for RPC. (#​900)
  • To match constant naming conventions in the api/standard package, the FaaS* key names are appended with a suffix of Key. (#​920)
    • "api/standard".FaaSName -> FaaSNameKey
    • "api/standard".FaaSID -> FaaSIDKey
    • "api/standard".FaaSVersion -> FaaSVersionKey
    • "api/standard".FaaSInstance -> FaaSInstanceKey
Removed
  • The FlagsUnused trace flag is removed.
    The purpose of this flag was to act as the inverse of FlagsSampled, the inverse of FlagsSampled is used instead. (#​882)
  • The B3 header constants (B3SingleHeader, B3DebugFlagHeader, B3TraceIDHeader, B3SpanIDHeader, B3SampledHeader, B3ParentSpanIDHeader) are removed.
    If B3 header keys are needed the authoritative OpenZipkin package constants should be used instead. (#​882)
Fixed
  • The B3 Single Header name is now correctly b3 instead of the previous X-B3. (#​881)
  • The B3 propagator now correctly supports sampling only values (b3: 0, b3: 1, or b3: d) for a Single B3 Header. (#​882)
  • The B3 propagator now propagates the debug flag.
    This removes the behavior of changing the debug flag into a set sampling bit.
    Instead, this now follow the B3 specification and omits the X-B3-Sampling header. (#​882)
  • The B3 propagator now tracks "unset" sampling state (meaning "defer the decision") and does not set the X-B3-Sampling header when injecting. (#​882)
  • Bump github.com/itchyny/gojq from 0.10.3 to 0.10.4 in /tools. (#​883)
  • Bump github.com/opentracing/opentracing-go from v1.1.1-0.20190913142402-a7454ce5950e to v1.2.0. (#​885)
  • The tracing time conversion for OTLP spans is now correctly set to UnixNano. (#​896)
  • Ensure span status is not set to Unknown when no HTTP status code is provided as it is assumed to be 200 OK. (#​908)
  • Ensure httptrace.clientTracer closes http.headers span. (#​912)
  • Prometheus exporter will not apply stale updates or forget inactive metrics. (#​903)
  • Add test for api.standard HTTPClientAttributesFromHTTPRequest. (#​905)
  • Bump github.com/golangci/golangci-lint from 1.27.0 to 1.28.1 in /tools. (#​901, #​913)
  • Update otel-colector example to use the v0.5.0 collector. (#​915)
  • The grpctrace instrumentation uses a span name conforming to the OpenTelemetry semantic conventions (does not contain a leading slash (/)). (#​922)
  • The grpctrace instrumentation includes an rpc.method attribute now set to the gRPC method name. (#​900, #​922)
  • The grpctrace instrumentation rpc.service attribute now contains the package name if one exists.
    This is in accordance with OpenTelemetry semantic conventions. (#​922)
  • Correlation Context extractor will no longer insert an empty map into the returned context when no valid values are extracted. (#​923)
  • Bump google.golang.org/api from 0.28.0 to 0.29.0 in /exporters/trace/jaeger. (#​925)
  • Bump github.com/itchyny/gojq from 0.10.4 to 0.11.0 in /tools. (#​926)
  • Bump github.com/golangci/golangci-lint from 1.28.1 to 1.28.2 in /tools. (#​930)

Commits since previous tag v0.7.0

aff7a80 (HEAD -> master, tag: v0.8.0, tag: exporters/trace/zipkin/v0.8.0, tag: exporters/trace/jaeger/v0.8.0, tag: exporters/otlp/v0.8.0, tag: exporters/metric/prometheus/v0.8.0, tag: example/zipkin/v0.8.0, tag: example/prometheus/v0.8.0, tag: example/otel-collector/v0.8.0, tag: example/namedtracer/v0.8.0, tag: example/jaeger/v0.8.0, tag: example/http/v0.8.0, tag: example/grpc/v0.8.0, tag: example/basic/v0.8.0, upstream/master, origin/master, origin/HEAD) Release v0.8.0 (#​929)
9e99b44 Bump github.com/golangci/golangci-lint from 1.28.1 to 1.28.2 in /tools (#​930)
4dec0ad [jaeger] Added WithBatchMaxCount as an option (#​931)
d979977 Add semantic conventions for OS process as resource attributes (#​919)
54fffd6 Update grpctrace instrumentation span names (#​922)
d2913b7 Bump google.golang.org/api from 0.28.0 to 0.29.0 in /exporters/trace/jaeger (#​925)
c719588 Avoid replacing existing correlation map data in context when correlation context extractor does not find any valid data (#​923)
fab431e Fix api/standard constant names and documentation (#​920)
cf6462c Bump github.com/itchyny/gojq from 0.10.4 to 0.11.0 in /tools (#​926)
03cd779 Add http content size semantic conventions (#​905)
1c9aab6 Extend semantic convetions for RPC (#​900)
918c654 Update Changelog with omitted changes (#​921)
c506e99 Fix B3 propagator and add tests (#​882)
3475d55 Fix incorrect aggregation; Prometheus exporter behavior (#​903)
808345c Bump CircleCI instance size (#​917)
c219029 Update otel-collector example to use collector v0.5.0 (#​915)
1c6ca87 Ensure clientTracer closes http.headers span (#​912)
463c458 Add more database-specific semantic attributes (#​899)
5a4b68c Add semantic convention for faas.coldstart and container.id (#​909)
eaa94e9 Avoid setting span status to Unknown when no HTTP status is provided; stdlib assumes it to be 200 OK (#​908)
9342eb2 Bump github.com/golangci/golangci-lint from 1.28.0 to 1.28.1 in /tools (#​913)
27e892a Remove -v from Go tests (#​904)
bd1e174 Add "peer.service" semantic to standard attributes (#​898)
8d1f448 Bump github.com/golangci/golangci-lint from 1.27.0 to 1.28.0 in /tools (#​901)
550d365 fix trace event time conversion from internal to otlp (#​896)
f1e3536 Update opentracing dependency (#​885)
f4b1568 Bump github.com/itchyny/gojq from 0.10.3 to 0.10.4 in /tools (#​883)
8205b0b Update B3 header names (#​881)
2635f96 Ask for changelog updates with PRs (#​879)

v0.7.0

Compare Source

This release implements the v0.5.0 version of the OpenTelemetry specification.

Added
  • The othttp instrumentation now includes default metrics. (#​861)
  • This CHANGELOG file to track all changes in the project going forward.
  • Support for array type attributes. (#​798)
  • Apply transitive dependabot go.mod dependency updates as part of a new automatic Github workflow. (#​844)
  • Timestamps are now passed to exporters for each export. (#​835)
  • Add new Accumulation type to metric SDK to transport telemetry from Accumulators to Processors.
    This replaces the prior Record struct use for this purpose. (#​835)
  • New dependabot integration to automate package upgrades. (#​814)
  • Meter and Tracer implementations accept instrumentation version version as an optional argument.
    This instrumentation version is passed on to exporters. (#​811) (#​805) (#​802)
  • The OTLP exporter includes the instrumentation version in telemetry it exports. (#​811)
  • Environment variables for Jaeger exporter are supported. (#​796)
  • New aggregation.Kind in the export metric API. (#​808)
  • New example that uses OTLP and the collector. (#​790)
  • Handle errors in the span SetName during span initialization. (#​791)
  • Default service config to enable retries for retry-able failed requests in the OTLP exporter and an option to override this default. (#​777)
  • New go.opentelemetry.io/otel/api/oterror package to uniformly support error handling and definitions for the project. (#​778)
  • New global default implementation of the go.opentelemetry.io/otel/api/oterror.Handler interface to be used to handle errors prior to an user defined Handler.
    There is also functionality for the user to register their Handler as well as a convenience function Handle to handle an error with this global Handler(#​778)
  • Options to specify propagators for httptrace and grpctrace instrumentation. (#​784)
  • The required application/json header for the Zipkin exporter is included in all exports. (#​774)
  • Integrate HTTP semantics helpers from the contrib repository into the api/standard package. #​769
Changed
  • Rename Integrator to Processor in the metric SDK. (#​863)
  • Rename AggregationSelector to AggregatorSelector. (#​859)
  • Rename SynchronizedCopy to SynchronizedMove. (#​858)
  • Rename simple integrator to basic integrator. (#​857)
  • Merge otlp collector examples. (#​841)
  • Change the metric SDK to support cumulative, delta, and pass-through exporters directly.
    With these changes, cumulative and delta specific exporters are able to request the correct kind of aggregation from the SDK. (#​840)
  • The Aggregator.Checkpoint API is renamed to SynchronizedCopy and adds an argument, a different Aggregator into which the copy is stored. (#​812)
  • The export.Aggregator contract is that Update() and SynchronizedCopy() are synchronized with each other.
    All the aggregation interfaces (Sum, LastValue, ...) are not meant to be synchronized, as the caller is expected to synchronize aggregators at a higher level after the Accumulator.
    Some of the Aggregators used unnecessary locking and that has been cleaned up. (#​812)
  • Use of metric.Number was replaced by int64 now that we use sync.Mutex in the MinMaxSumCount and Histogram Aggregators. (#​812)
  • Replace AlwaysParentSample with ParentSample(fallback) to match the OpenTelemetry v0.5.0 specification. (#​810)
  • Rename sdk/export/metric/aggregator to sdk/export/metric/aggregation. #​808
  • Send configured headers with every request in the OTLP exporter, instead of just on connection creation. (#​806)
  • Update error handling for any one off error handlers, replacing, instead, with the global.Handle function. (#​791)
  • Rename plugin directory to instrumentation to match the OpenTelemetry specification. (#​779)
  • Makes the argument order to Histogram and DDSketch New() consistent. (#​781)
Removed
  • Uint64NumberKind and related functions from the API. (#​864)
  • Context arguments from Aggregator.Checkpoint and Integrator.Process as they were unused. (#​803)
  • SpanID is no longer included in parameters for sampling decision to match the OpenTelemetry specification. (#​775)
Fixed
  • Upgrade OTLP exporter to opentelemetry-proto matching the opentelemetry-collector v0.4.0 release. (#​866)
  • Allow changes to go.sum and go.mod when running dependabot tidy-up. (#​871)
  • Bump github.com/stretchr/testify from 1.4.0 to 1.6.1. (#​824)
  • Bump github.com/prometheus/client_golang from 1.7.0 to 1.7.1 in /exporters/metric/prometheus. (#​867)
  • Bump google.golang.org/grpc from 1.29.1 to 1.30.0 in /exporters/trace/jaeger. (#​853)
  • Bump google.golang.org/grpc from 1.29.1 to 1.30.0 in /exporters/trace/zipkin. (#​854)
  • Bumps github.com/golang/protobuf from 1.3.2 to 1.4.2 (#​848)
  • Bump github.com/stretchr/testify from 1.4.0 to 1.6.1 in /exporters/otlp (#​817)
  • Bump github.com/golangci/golangci-lint from 1.25.1 to 1.27.0 in /tools (#​828)
  • Bump github.com/prometheus/client_golang from 1.5.0 to 1.7.0 in /exporters/metric/prometheus (#​838)
  • Bump github.com/stretchr/testify from 1.4.0 to 1.6.1 in /exporters/trace/jaeger (#​829)
  • Bump github.com/benbjohnson/clock from 1.0.0 to 1.0.3 (#​815)
  • Bump github.com/stretchr/testify from 1.4.0 to 1.6.1 in /exporters/trace/zipkin (#​823)
  • Bump github.com/itchyny/gojq from 0.10.1 to 0.10.3 in /tools (#​830)
  • Bump github.com/stretchr/testify from 1.4.0 to 1.6.1 in /exporters/metric/prometheus (#​822)
  • Bump google.golang.org/grpc from 1.27.1 to 1.29.1 in /exporters/trace/zipkin (#​820)
  • Bump google.golang.org/grpc from 1.27.1 to 1.29.1 in /exporters/trace/jaeger (#​831)
  • Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 (#​836)
  • Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 in /exporters/trace/jaeger (#​837)
  • Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 in /exporters/otlp (#​839)
  • Bump google.golang.org/api from 0.20.0 to 0.28.0 in /exporters/trace/jaeger (#​843)
  • Set span status from HTTP status code in the othttp instrumentation. (#​832)
  • Fixed typo in push controller comment. (#​834)
  • The Aggregator testing has been updated and cleaned. (#​812)
  • metric.Number(0) expressions are replaced by 0 where possible. (#​812)
  • Fixed global handler_test.go test failure. #​804
  • Fixed BatchSpanProcessor.Shutdown to wait until all spans are processed. (#​766)
  • Fixed OTLP example's accidental early close of exporter. (#​807)
  • Ensure zipkin exporter reads and closes response body. (#​788)
  • Update instrumentation to use api/standard keys instead of custom keys. (#​782)
  • Clean up tools and RELEASING documentation. (#​762)

v0.6.0

Compare Source

Added
  • Support for Resources in the prometheus exporter. (#​757)
  • New pull controller. (#​751)
  • New UpDownSumObserver instrument. (#​750)
  • OpenTelemetry collector demo. (#​711)
  • New SumObserver instrument. (#​747)
  • New UpDownCounter instrument. (#​745)
  • New timeout Option and configuration function WithTimeout to the push controller. (#​742)
  • New api/standards package to implement semantic conventions and standard key-value generation. (#​731)
Changed
  • Rename Register* functions in the metric API to New* for all Observer instruments. (#​761)
  • Use []float64 for histogram boundaries, not []metric.Number. (#​758)
  • Change OTLP example to use exporter as a trace Syncer instead of as an unneeded Batcher. (#​756)
  • Replace WithResourceAttributes() with WithResource() in the trace SDK. (#​754)
  • The prometheus exporter now uses the new pull controller. (#​751)
  • Rename ScheduleDelayMillis to BatchTimeout in the trace BatchSpanProcessor.(#​752)
  • Support use of synchronous instruments in asynchronous callbacks (#​725)
  • Move Resource from the Export method parameter into the metric export Record. (#​739)
  • Rename Observer instrument to ValueObserver. (#​734)
  • The push controller now has a method (Provider()) to return a metric.Provider instead of the old Meter method that acted as a metric.Provider. (#​738)
  • Replace Measure instrument by ValueRecorder instrument. (#​732)
  • Rename correlation context header from "Correlation-Context" to "otcorrelations" to match the OpenTelemetry specification. 727)
Fixed
  • Ensure gRPC ClientStream override methods do not panic in grpctrace package. (#​755)
  • Disable parts of BatchSpanProcessor test until a fix is found. (#​743)
  • Fix string case in kv Infer function. (#​746)
  • Fix panic in grpctrace client interceptors. (#​740)
  • Refactor the api/metrics push controller and add CheckpointSet synchronization. (#​737)
  • Rewrite span batch process queue batching logic. (#​719)
  • Remove the push controller named Meter map. (#​738)
  • Fix Histogram aggregator initial state (fix #​735). (#​736)
  • Ensure golang alpine image is running golang-1.14 for examples. (#​733)
  • Added test for grpctrace UnaryInterceptorClient. (#​695)
  • Rearrange api/metric code layout. (#​724)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc](https://github.com/open-telemetry/opentelemetry-go) | replace | minor | `v0.0.0-20240518090000-14441aefdf88` -> `v0.10.0` | | [go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp](https://github.com/open-telemetry/opentelemetry-go) | replace | minor | `v0.3.0` -> `v0.10.0` | | [go.opentelemetry.io/otel/log](https://github.com/open-telemetry/opentelemetry-go) | replace | minor | `v0.3.0` -> `v0.10.0` | | [go.opentelemetry.io/otel/sdk/log](https://github.com/open-telemetry/opentelemetry-go) | replace | minor | `v0.3.0` -> `v0.10.0` | --- ### Release Notes <details> <summary>open-telemetry/opentelemetry-go (go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc)</summary> ### [`v0.10.0`](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.10.0) [Compare Source](https://github.com/open-telemetry/opentelemetry-go/compare/v0.9.0...v0.10.0) This release migrates the default OpenTelemetry SDK into its own Go module, decoupling the SDK from the API and reducing dependencies for instrumentation packages. ##### Added - The Zipkin exporter now has `NewExportPipeline` and `InstallNewPipeline` constructor functions to match the common pattern. These function build a new exporter with default SDK options and register the exporter with the `global` package respectively. ([#&#8203;944](https://github.com/open-telemetry/opentelemetry-go/issues/944)) - Add propagator option for gRPC instrumentation. ([#&#8203;986](https://github.com/open-telemetry/opentelemetry-go/issues/986)) - The `testtrace` package now tracks the `trace.SpanKind` for each span. ([#&#8203;987](https://github.com/open-telemetry/opentelemetry-go/issues/987)) ##### Changed - Replace the `RegisterGlobal` `Option` in the Jaeger exporter with an `InstallNewPipeline` constructor function. This matches the other exporter constructor patterns and will register a new exporter after building it with default configuration. ([#&#8203;944](https://github.com/open-telemetry/opentelemetry-go/issues/944)) - The trace (`go.opentelemetry.io/otel/exporters/trace/stdout`) and metric (`go.opentelemetry.io/otel/exporters/metric/stdout`) `stdout` exporters are now merged into a single exporter at `go.opentelemetry.io/otel/exporters/stdout`. This new exporter was made into its own Go module to follow the pattern of all exporters and decouple it from the `go.opentelemetry.io/otel` module. ([#&#8203;956](https://github.com/open-telemetry/opentelemetry-go/issues/956), [#&#8203;963](https://github.com/open-telemetry/opentelemetry-go/issues/963)) - Move the `go.opentelemetry.io/otel/exporters/test` test package to `go.opentelemetry.io/otel/sdk/export/metric/metrictest`. ([#&#8203;962](https://github.com/open-telemetry/opentelemetry-go/issues/962)) - The `go.opentelemetry.io/otel/api/kv/value` package was merged into the parent `go.opentelemetry.io/otel/api/kv` package. ([#&#8203;968](https://github.com/open-telemetry/opentelemetry-go/issues/968)) - `value.Bool` was replaced with `kv.BoolValue`. - `value.Int64` was replaced with `kv.Int64Value`. - `value.Uint64` was replaced with `kv.Uint64Value`. - `value.Float64` was replaced with `kv.Float64Value`. - `value.Int32` was replaced with `kv.Int32Value`. - `value.Uint32` was replaced with `kv.Uint32Value`. - `value.Float32` was replaced with `kv.Float32Value`. - `value.String` was replaced with `kv.StringValue`. - `value.Int` was replaced with `kv.IntValue`. - `value.Uint` was replaced with `kv.UintValue`. - `value.Array` was replaced with `kv.ArrayValue`. - Rename `Infer` to `Any` in the `go.opentelemetry.io/otel/api/kv` package. ([#&#8203;972](https://github.com/open-telemetry/opentelemetry-go/issues/972)) - Rename `go.opentelemetry.io/otel/sdk/metric/aggregator/test` package to `go.opentelemetry.io/otel/sdk/metric/aggregator/aggregatortest`. ([#&#8203;980](https://github.com/open-telemetry/opentelemetry-go/issues/980)) - Make the SDK into its own Go module called `go.opentelemetry.io/otel/sdk`. ([#&#8203;985](https://github.com/open-telemetry/opentelemetry-go/issues/985)) - Changed the default trace `Sampler` from `AlwaysOn` to `ParentOrElse(AlwaysOn)`. ([#&#8203;989](https://github.com/open-telemetry/opentelemetry-go/issues/989)) ##### Removed - The `IndexedAttribute` function from the `go.opentelemetry.io/otel/api/label` package was removed in favor of `IndexedLabel` which it was synonymous with. ([#&#8203;970](https://github.com/open-telemetry/opentelemetry-go/issues/970)) ##### Fixed - Bump github.com/golangci/golangci-lint from 1.28.3 to 1.29.0 in /tools. ([#&#8203;953](https://github.com/open-telemetry/opentelemetry-go/issues/953)) - Bump github.com/google/go-cmp from 0.5.0 to 0.5.1. ([#&#8203;957](https://github.com/open-telemetry/opentelemetry-go/issues/957)) - Use `global.Handle` for span export errors in the OTLP exporter. ([#&#8203;946](https://github.com/open-telemetry/opentelemetry-go/issues/946)) - Correct Go language formatting in the README documentation. ([#&#8203;961](https://github.com/open-telemetry/opentelemetry-go/issues/961)) - Remove default SDK dependencies from the `go.opentelemetry.io/otel/api` package. ([#&#8203;977](https://github.com/open-telemetry/opentelemetry-go/issues/977)) - Remove default SDK dependencies from the `go.opentelemetry.io/otel/instrumentation` package. ([#&#8203;983](https://github.com/open-telemetry/opentelemetry-go/issues/983)) - Move documented examples for `go.opentelemetry.io/otel/instrumentation/grpctrace` interceptors into Go example tests. ([#&#8203;984](https://github.com/open-telemetry/opentelemetry-go/issues/984)) *** ##### Raw changes made between v0.9.0 and v0.10.0 [`fd61d2e`](https://github.com/open-telemetry/opentelemetry-go/commit/fd61d2edece005195116e6b9218801a460a3868d) (HEAD -> master, tag: v0.10.0, tag: sdk/v0.10.0, tag: exporters/trace/zipkin/v0.10.0, tag: exporters/trace/jaeger/v0.10.0, tag: exporters/stdout/v0.10.0, tag: exporters/otlp/v0.10.0, tag: exporters/metric/prometheus/v0.10.0, tag: example/zipkin/v0.10.0, tag: example/prometheus/v0.10.0, tag: example/otel-collector/v0.10.0, tag: example/namedtracer/v0.10.0, tag: example/jaeger/v0.10.0, tag: example/http/v0.10.0, tag: example/grpc/v0.10.0, tag: example/basic/v0.10.0, upstream/master, origin/master, origin/HEAD) Release v0.10.0 ([#&#8203;990](https://github.com/open-telemetry/opentelemetry-go/issues/990)) [`1299210`](https://github.com/open-telemetry/opentelemetry-go/commit/12992106de1648c1ec17d4485f3206d57515adde) Change default Sampler to ParentOrElse(AlwaysOn) ([#&#8203;989](https://github.com/open-telemetry/opentelemetry-go/issues/989)) [`fa883d4`](https://github.com/open-telemetry/opentelemetry-go/commit/fa883d426b122906d4d0e81192d3ac942e2616b4) testtrace.Span tracks and returns its SpanKind. ([#&#8203;987](https://github.com/open-telemetry/opentelemetry-go/issues/987)) [`26e85e1`](https://github.com/open-telemetry/opentelemetry-go/commit/26e85e1830a4b183e83718fced9271b66b71da3b) Add propagator option for gRPC instrumentation ([#&#8203;986](https://github.com/open-telemetry/opentelemetry-go/issues/986)) [`8fbaa9d`](https://github.com/open-telemetry/opentelemetry-go/commit/8fbaa9d432262bfc586d32a385104648a2d9b08a) Make the SDK into its own Go module ([#&#8203;985](https://github.com/open-telemetry/opentelemetry-go/issues/985)) [`d6bf2fb`](https://github.com/open-telemetry/opentelemetry-go/commit/d6bf2fbfc302cd06ed4536c309abc9f3bd15f5a3) Decouple instrumentation from SDK ([#&#8203;983](https://github.com/open-telemetry/opentelemetry-go/issues/983)) [`42c2a86`](https://github.com/open-telemetry/opentelemetry-go/commit/42c2a86ea483f3952c92f490d6184c1dfb7d4ca6) Move grpctrace examples from comment to code ([#&#8203;984](https://github.com/open-telemetry/opentelemetry-go/issues/984)) [`e06c9da`](https://github.com/open-telemetry/opentelemetry-go/commit/e06c9da91674151020fdd4c9a9b35424c9d350da) Rename aggregator/test to aggregatortest ([#&#8203;980](https://github.com/open-telemetry/opentelemetry-go/issues/980)) [`67a2c23`](https://github.com/open-telemetry/opentelemetry-go/commit/67a2c2301677f2650f6ec7c23b7bfc9b53884570) Update Changelog ([#&#8203;982](https://github.com/open-telemetry/opentelemetry-go/issues/982)) [`2833212`](https://github.com/open-telemetry/opentelemetry-go/commit/2833212bd9ce73cef3ffb44ccc78f3fb3dd16d3b) Decouple API from SDK ([#&#8203;977](https://github.com/open-telemetry/opentelemetry-go/issues/977)) [`7f1dc4a`](https://github.com/open-telemetry/opentelemetry-go/commit/7f1dc4a23720177a46280e2b92be046b099abfd6) Update Contributing style guide section ([#&#8203;971](https://github.com/open-telemetry/opentelemetry-go/issues/971)) [`6917167`](https://github.com/open-telemetry/opentelemetry-go/commit/691716712372ddadd4559d9b5b482e6b94e301a3) Rename kv.Infer to kv.Any ([#&#8203;969](https://github.com/open-telemetry/opentelemetry-go/issues/969)) ([#&#8203;972](https://github.com/open-telemetry/opentelemetry-go/issues/972)) [`c9c8137`](https://github.com/open-telemetry/opentelemetry-go/commit/c9c81379541b7bec5f4ce6e3b31f8f6865dae07e) Remove IndexedAttribute from api/label ([#&#8203;970](https://github.com/open-telemetry/opentelemetry-go/issues/970)) [`3b01a85`](https://github.com/open-telemetry/opentelemetry-go/commit/3b01a854d1cbdcaebf38f89af8b2f28fb90489eb) Make the stdout exporter a package ([#&#8203;963](https://github.com/open-telemetry/opentelemetry-go/issues/963)) [`c6611f4`](https://github.com/open-telemetry/opentelemetry-go/commit/c6611f44785883c1d5dfa712a3464493d285dba6) Move export test package to SDK ([#&#8203;962](https://github.com/open-telemetry/opentelemetry-go/issues/962)) [`d99ac09`](https://github.com/open-telemetry/opentelemetry-go/commit/d99ac0993ef027dc9d4fac95b2accbbc2fc15572) Remove sub-package value from kv ([#&#8203;968](https://github.com/open-telemetry/opentelemetry-go/issues/968)) [`fd54b6c`](https://github.com/open-telemetry/opentelemetry-go/commit/fd54b6c6422b64712ac0ef880365a610046f7af7) paivagustavo to emeritus for now ([#&#8203;960](https://github.com/open-telemetry/opentelemetry-go/issues/960)) [`7918070`](https://github.com/open-telemetry/opentelemetry-go/commit/79180706177b5dc834311c911cb3fcab9d21b441) README: fixup spaces on code example ([#&#8203;961](https://github.com/open-telemetry/opentelemetry-go/issues/961)) [`452256c`](https://github.com/open-telemetry/opentelemetry-go/commit/452256cbf419c51b3cec0bdf64c0cff64980e9f4) Unify trace and metric stdout exporters ([#&#8203;956](https://github.com/open-telemetry/opentelemetry-go/issues/956)) [`f31d8ec`](https://github.com/open-telemetry/opentelemetry-go/commit/f31d8ec1d082a480cdaba3b553005f50412c63a0) Unify trace and metric exporter helpers ([#&#8203;944](https://github.com/open-telemetry/opentelemetry-go/issues/944)) [`c5d77d2`](https://github.com/open-telemetry/opentelemetry-go/commit/c5d77d234cf2e28cd72e46ec5621b3827071b1b5) Bump github.com/google/go-cmp from 0.5.0 to 0.5.1 ([#&#8203;957](https://github.com/open-telemetry/opentelemetry-go/issues/957)) [`c8b657e`](https://github.com/open-telemetry/opentelemetry-go/commit/c8b657eb6ce7d15d4e7fb7825c240c85fceadc60) use global handler for span export err in otlp ([#&#8203;946](https://github.com/open-telemetry/opentelemetry-go/issues/946)) [`f6b51df`](https://github.com/open-telemetry/opentelemetry-go/commit/f6b51df544b1cc386aa799c241ad12557d6b5482) Bump github.com/golangci/golangci-lint from 1.28.3 to 1.29.0 in /tools ([#&#8203;953](https://github.com/open-telemetry/opentelemetry-go/issues/953)) ### [`v0.9.0`](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.9.0) [Compare Source](https://github.com/open-telemetry/opentelemetry-go/compare/v0.8.0...v0.9.0) This release includes a new `Resource` auto-detector interface and a generation of the OTLP locally. ##### Added - A new Resource Detector interface is included to allow resources to be automatically detected and included. ([#&#8203;939](https://github.com/open-telemetry/opentelemetry-go/issues/939)) - A Detector to automatically detect resources from an environment variable. ([#&#8203;939](https://github.com/open-telemetry/opentelemetry-go/issues/939)) - Github action to generate protobuf Go bindings locally in `internal/opentelemetry-proto-gen`. ([#&#8203;938](https://github.com/open-telemetry/opentelemetry-go/issues/938)) - OTLP .proto files from `open-telemetry/opentelemetry-proto` imported as a git submodule under `internal/opentelemetry-proto`. References to `github.com/open-telemetry/opentelemetry-proto` changed to `go.opentelemetry.io/otel/internal/opentelemetry-proto-gen`. ([#&#8203;942](https://github.com/open-telemetry/opentelemetry-go/issues/942)) ##### Changed - Non-nil value `struct`s for key-value pairs will be marshalled using JSON rather than `Sprintf`. ([#&#8203;948](https://github.com/open-telemetry/opentelemetry-go/issues/948)) ##### Removed - Removed dependency on `github.com/open-telemetry/opentelemetry-collector`. ([#&#8203;943](https://github.com/open-telemetry/opentelemetry-go/issues/943)) *** ##### Raw changes made between v0.8.0 and v0.9.0 [`58e50e2`](https://github.com/open-telemetry/opentelemetry-go/commit/58e50e249fe4c57f64e421e300b5d2316ae96811) (HEAD -> master, tag: v0.9.0, tag: exporters/trace/zipkin/v0.9.0, tag: exporters/trace/jaeger/v0.9.0, tag: exporters/otlp/v0.9.0, tag: exporters/metric/prometheus/v0.9.0, tag: example/zipkin/v0.9.0, tag: example/prometheus/v0.9.0, tag: example/otel-collector/v0.9.0, tag: example/namedtracer/v0.9.0, tag: example/jaeger/v0.9.0, tag: example/http/v0.9.0, tag: example/grpc/v0.9.0, tag: example/basic/v0.9.0, upstream/master, origin/master, origin/HEAD) Release v0.9.0 ([#&#8203;952](https://github.com/open-telemetry/opentelemetry-go/issues/952)) [`e6537c6`](https://github.com/open-telemetry/opentelemetry-go/commit/e6537c6aa6f287660d76f939cb5b24a407db03fb) Fix typo in comment ([#&#8203;951](https://github.com/open-telemetry/opentelemetry-go/issues/951)) [`99c2998`](https://github.com/open-telemetry/opentelemetry-go/commit/99c299877dbd70df7455bd7df65e5ed8ac5c114f) OT resource detector ([#&#8203;939](https://github.com/open-telemetry/opentelemetry-go/issues/939)) [`b2b23e1`](https://github.com/open-telemetry/opentelemetry-go/commit/b2b23e15e5724d2fdb3107ee8aa2d022de3af508) supports marshaling values as json ([#&#8203;948](https://github.com/open-telemetry/opentelemetry-go/issues/948)) [`d6ad4d4`](https://github.com/open-telemetry/opentelemetry-go/commit/d6ad4d4d6e27b41c3e5d34e32333e8a71fbcca9a) \[jaeger] Stop ignoring uints ([#&#8203;945](https://github.com/open-telemetry/opentelemetry-go/issues/945)) [`4f3fab3`](https://github.com/open-telemetry/opentelemetry-go/commit/4f3fab3ba7df677205e673ae743ee067c99dbe87) Remove github.com/open-telemetry/opentelemetry-collector dependency ([#&#8203;943](https://github.com/open-telemetry/opentelemetry-go/issues/943)) [`166c703`](https://github.com/open-telemetry/opentelemetry-go/commit/166c703bd031040c8c3976863c901ae56fd74473) Import open-telemetry/opentelemetry-proto submodule and generate protobuf bindings locally ([#&#8203;942](https://github.com/open-telemetry/opentelemetry-go/issues/942)) [`dd79483`](https://github.com/open-telemetry/opentelemetry-go/commit/dd79483e20e449c586ef573249afbd76cb71fe93) Create protobuf generation GitHub action ([#&#8203;938](https://github.com/open-telemetry/opentelemetry-go/issues/938)) [`31dd06a`](https://github.com/open-telemetry/opentelemetry-go/commit/31dd06af9d8add6752adf5f7dea5b9bfb1b9882e) Bump github.com/golangci/golangci-lint from 1.28.2 to 1.28.3 in /tools ([#&#8203;936](https://github.com/open-telemetry/opentelemetry-go/issues/936)) [`9edcad3`](https://github.com/open-telemetry/opentelemetry-go/commit/9edcad38296cb53cd9357ddcb4df75344e1cc0d2) Backport tag script from contrib repo ([#&#8203;934](https://github.com/open-telemetry/opentelemetry-go/issues/934)) ### [`v0.8.0`](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.8.0) [Compare Source](https://github.com/open-telemetry/opentelemetry-go/compare/v0.7.0...v0.8.0) This release includes additions and changes to implements the [v0.6.0 OpenTelemetry specification](https://github.com/open-telemetry/opentelemetry-specification/releases/tag/v0.6.0) and other fixes. ##### Added - The `B3Encoding` type to represent the B3 encoding(s) the B3 propagator can inject. A value for HTTP supported encodings (Multiple Header: `MultipleHeader`, Single Header: `SingleHeader`) are included. ([#&#8203;882](https://github.com/open-telemetry/opentelemetry-go/issues/882)) - The `FlagsDeferred` trace flag to indicate if the trace sampling decision has been deferred. ([#&#8203;882](https://github.com/open-telemetry/opentelemetry-go/issues/882)) - The `FlagsDebug` trace flag to indicate if the trace is a debug trace. ([#&#8203;882](https://github.com/open-telemetry/opentelemetry-go/issues/882)) - Add `peer.service` semantic attribute. ([#&#8203;898](https://github.com/open-telemetry/opentelemetry-go/issues/898)) - Add database-specific semantic attributes. ([#&#8203;899](https://github.com/open-telemetry/opentelemetry-go/issues/899)) - Add semantic convention for `faas.coldstart` and `container.id`. ([#&#8203;909](https://github.com/open-telemetry/opentelemetry-go/issues/909)) - Add http content size semantic conventions. ([#&#8203;905](https://github.com/open-telemetry/opentelemetry-go/issues/905)) - Include `http.request_content_length` in HTTP request basic attributes. ([#&#8203;905](https://github.com/open-telemetry/opentelemetry-go/issues/905)) - Add semantic conventions for operating system process resource attribute keys. ([#&#8203;919](https://github.com/open-telemetry/opentelemetry-go/issues/919)) - The Jaeger exporter now has a `WithBatchMaxCount` option to specify the maximum number of spans sent in a batch. ([#&#8203;931](https://github.com/open-telemetry/opentelemetry-go/issues/931)) ##### Changed - Update `CONTRIBUTING.md` to ask for updates to `CHANGELOG.md` with each pull request. ([#&#8203;879](https://github.com/open-telemetry/opentelemetry-go/issues/879)) - Use lowercase header names for B3 Multiple Headers. ([#&#8203;881](https://github.com/open-telemetry/opentelemetry-go/issues/881)) - The B3 propagator `SingleHeader` field has been replaced with `InjectEncoding`. This new field can be set to combinations of the `B3Encoding` bitmasks and will inject trace information in these encodings. If no encoding is set, the propagator will default to `MultipleHeader` encoding. ([#&#8203;882](https://github.com/open-telemetry/opentelemetry-go/issues/882)) - The B3 propagator now extracts from either HTTP encoding of B3 (Single Header or Multiple Header) based on what is contained in the header. Preference is given to Single Header encoding with Multiple Header being the fallback if Single Header is not found or is invalid. This behavior change is made to dynamically support all correctly encoded traces received instead of having to guess the expected encoding prior to receiving. ([#&#8203;882](https://github.com/open-telemetry/opentelemetry-go/issues/882)) - Extend semantic conventions for RPC. ([#&#8203;900](https://github.com/open-telemetry/opentelemetry-go/issues/900)) - To match constant naming conventions in the `api/standard` package, the `FaaS*` key names are appended with a suffix of `Key`. ([#&#8203;920](https://github.com/open-telemetry/opentelemetry-go/issues/920)) - `"api/standard".FaaSName` -> `FaaSNameKey` - `"api/standard".FaaSID` -> `FaaSIDKey` - `"api/standard".FaaSVersion` -> `FaaSVersionKey` - `"api/standard".FaaSInstance` -> `FaaSInstanceKey` ##### Removed - The `FlagsUnused` trace flag is removed. The purpose of this flag was to act as the inverse of `FlagsSampled`, the inverse of `FlagsSampled` is used instead. ([#&#8203;882](https://github.com/open-telemetry/opentelemetry-go/issues/882)) - The B3 header constants (`B3SingleHeader`, `B3DebugFlagHeader`, `B3TraceIDHeader`, `B3SpanIDHeader`, `B3SampledHeader`, `B3ParentSpanIDHeader`) are removed. If B3 header keys are needed [the authoritative OpenZipkin package constants](https://pkg.go.dev/github.com/openzipkin/zipkin-go@v0.2.2/propagation/b3?tab=doc#pkg-constants) should be used instead. ([#&#8203;882](https://github.com/open-telemetry/opentelemetry-go/issues/882)) ##### Fixed - The B3 Single Header name is now correctly `b3` instead of the previous `X-B3`. ([#&#8203;881](https://github.com/open-telemetry/opentelemetry-go/issues/881)) - The B3 propagator now correctly supports sampling only values (`b3: 0`, `b3: 1`, or `b3: d`) for a Single B3 Header. ([#&#8203;882](https://github.com/open-telemetry/opentelemetry-go/issues/882)) - The B3 propagator now propagates the debug flag. This removes the behavior of changing the debug flag into a set sampling bit. Instead, this now follow the B3 specification and omits the `X-B3-Sampling` header. ([#&#8203;882](https://github.com/open-telemetry/opentelemetry-go/issues/882)) - The B3 propagator now tracks "unset" sampling state (meaning "defer the decision") and does not set the `X-B3-Sampling` header when injecting. ([#&#8203;882](https://github.com/open-telemetry/opentelemetry-go/issues/882)) - Bump github.com/itchyny/gojq from 0.10.3 to 0.10.4 in /tools. ([#&#8203;883](https://github.com/open-telemetry/opentelemetry-go/issues/883)) - Bump github.com/opentracing/opentracing-go from v1.1.1-0.20190913142402-a7454ce5950e to v1.2.0. ([#&#8203;885](https://github.com/open-telemetry/opentelemetry-go/issues/885)) - The tracing time conversion for OTLP spans is now correctly set to `UnixNano`. ([#&#8203;896](https://github.com/open-telemetry/opentelemetry-go/issues/896)) - Ensure span status is not set to `Unknown` when no HTTP status code is provided as it is assumed to be `200 OK`. ([#&#8203;908](https://github.com/open-telemetry/opentelemetry-go/issues/908)) - Ensure `httptrace.clientTracer` closes `http.headers` span. ([#&#8203;912](https://github.com/open-telemetry/opentelemetry-go/issues/912)) - Prometheus exporter will not apply stale updates or forget inactive metrics. ([#&#8203;903](https://github.com/open-telemetry/opentelemetry-go/issues/903)) - Add test for api.standard `HTTPClientAttributesFromHTTPRequest`. ([#&#8203;905](https://github.com/open-telemetry/opentelemetry-go/issues/905)) - Bump github.com/golangci/golangci-lint from 1.27.0 to 1.28.1 in /tools. ([#&#8203;901](https://github.com/open-telemetry/opentelemetry-go/issues/901), [#&#8203;913](https://github.com/open-telemetry/opentelemetry-go/issues/913)) - Update otel-colector example to use the v0.5.0 collector. ([#&#8203;915](https://github.com/open-telemetry/opentelemetry-go/issues/915)) - The `grpctrace` instrumentation uses a span name conforming to the OpenTelemetry semantic conventions (does not contain a leading slash (`/`)). ([#&#8203;922](https://github.com/open-telemetry/opentelemetry-go/issues/922)) - The `grpctrace` instrumentation includes an `rpc.method` attribute now set to the gRPC method name. ([#&#8203;900](https://github.com/open-telemetry/opentelemetry-go/issues/900), [#&#8203;922](https://github.com/open-telemetry/opentelemetry-go/issues/922)) - The `grpctrace` instrumentation `rpc.service` attribute now contains the package name if one exists. This is in accordance with OpenTelemetry semantic conventions. ([#&#8203;922](https://github.com/open-telemetry/opentelemetry-go/issues/922)) - Correlation Context extractor will no longer insert an empty map into the returned context when no valid values are extracted. ([#&#8203;923](https://github.com/open-telemetry/opentelemetry-go/issues/923)) - Bump google.golang.org/api from 0.28.0 to 0.29.0 in /exporters/trace/jaeger. ([#&#8203;925](https://github.com/open-telemetry/opentelemetry-go/issues/925)) - Bump github.com/itchyny/gojq from 0.10.4 to 0.11.0 in /tools. ([#&#8203;926](https://github.com/open-telemetry/opentelemetry-go/issues/926)) - Bump github.com/golangci/golangci-lint from 1.28.1 to 1.28.2 in /tools. ([#&#8203;930](https://github.com/open-telemetry/opentelemetry-go/issues/930)) *** ##### Commits since previous tag v0.7.0 [`aff7a80`](https://github.com/open-telemetry/opentelemetry-go/commit/aff7a80d5a463bea1d1d310e4e1e119703f80dd0) (HEAD -> master, tag: v0.8.0, tag: exporters/trace/zipkin/v0.8.0, tag: exporters/trace/jaeger/v0.8.0, tag: exporters/otlp/v0.8.0, tag: exporters/metric/prometheus/v0.8.0, tag: example/zipkin/v0.8.0, tag: example/prometheus/v0.8.0, tag: example/otel-collector/v0.8.0, tag: example/namedtracer/v0.8.0, tag: example/jaeger/v0.8.0, tag: example/http/v0.8.0, tag: example/grpc/v0.8.0, tag: example/basic/v0.8.0, upstream/master, origin/master, origin/HEAD) Release v0.8.0 ([#&#8203;929](https://github.com/open-telemetry/opentelemetry-go/issues/929)) [`9e99b44`](https://github.com/open-telemetry/opentelemetry-go/commit/9e99b441d2cb63bf7359b22860b47d8a8bbbb87d) Bump github.com/golangci/golangci-lint from 1.28.1 to 1.28.2 in /tools ([#&#8203;930](https://github.com/open-telemetry/opentelemetry-go/issues/930)) [`4dec0ad`](https://github.com/open-telemetry/opentelemetry-go/commit/4dec0addb001ed2700146fd000d8e124f77a62b2) \[jaeger] Added WithBatchMaxCount as an option ([#&#8203;931](https://github.com/open-telemetry/opentelemetry-go/issues/931)) [`d979977`](https://github.com/open-telemetry/opentelemetry-go/commit/d979977a406e01e2bb18dd510bdd12ebc4f4ffa7) Add semantic conventions for OS process as resource attributes ([#&#8203;919](https://github.com/open-telemetry/opentelemetry-go/issues/919)) [`54fffd6`](https://github.com/open-telemetry/opentelemetry-go/commit/54fffd64673def0e84eb3014ab0889d8f31a74db) Update grpctrace instrumentation span names ([#&#8203;922](https://github.com/open-telemetry/opentelemetry-go/issues/922)) [`d2913b7`](https://github.com/open-telemetry/opentelemetry-go/commit/d2913b735c1436e17a4145c5b29d280e991e1daa) Bump google.golang.org/api from 0.28.0 to 0.29.0 in /exporters/trace/jaeger ([#&#8203;925](https://github.com/open-telemetry/opentelemetry-go/issues/925)) [`c719588`](https://github.com/open-telemetry/opentelemetry-go/commit/c71958873374efb2cc05e309284ced063e41eef5) Avoid replacing existing correlation map data in context when correlation context extractor does not find any valid data ([#&#8203;923](https://github.com/open-telemetry/opentelemetry-go/issues/923)) [`fab431e`](https://github.com/open-telemetry/opentelemetry-go/commit/fab431e455fe8debf074c7719de810104e763409) Fix `api/standard` constant names and documentation ([#&#8203;920](https://github.com/open-telemetry/opentelemetry-go/issues/920)) [`cf6462c`](https://github.com/open-telemetry/opentelemetry-go/commit/cf6462c01e6de0c3710b67b0ba2417a2d27451fa) Bump github.com/itchyny/gojq from 0.10.4 to 0.11.0 in /tools ([#&#8203;926](https://github.com/open-telemetry/opentelemetry-go/issues/926)) [`03cd779`](https://github.com/open-telemetry/opentelemetry-go/commit/03cd779f0e0d3b1ff06ebf48551839f5ab1754a7) Add http content size semantic conventions ([#&#8203;905](https://github.com/open-telemetry/opentelemetry-go/issues/905)) [`1c9aab6`](https://github.com/open-telemetry/opentelemetry-go/commit/1c9aab619d8b54c19832ebd573a0c10cec2a07b7) Extend semantic convetions for RPC ([#&#8203;900](https://github.com/open-telemetry/opentelemetry-go/issues/900)) [`918c654`](https://github.com/open-telemetry/opentelemetry-go/commit/918c6547c9b3d914bda8738276943aaf8eeb2733) Update Changelog with omitted changes ([#&#8203;921](https://github.com/open-telemetry/opentelemetry-go/issues/921)) [`c506e99`](https://github.com/open-telemetry/opentelemetry-go/commit/c506e99b0121f6a740d48ed73203660ebecc6443) Fix B3 propagator and add tests ([#&#8203;882](https://github.com/open-telemetry/opentelemetry-go/issues/882)) [`3475d55`](https://github.com/open-telemetry/opentelemetry-go/commit/3475d5575e05d223654b33c22158f3fa2fec6c76) Fix incorrect aggregation; Prometheus exporter behavior ([#&#8203;903](https://github.com/open-telemetry/opentelemetry-go/issues/903)) [`808345c`](https://github.com/open-telemetry/opentelemetry-go/commit/808345cbf64ab4985bcf81624ba485c66a37e1af) Bump CircleCI instance size ([#&#8203;917](https://github.com/open-telemetry/opentelemetry-go/issues/917)) [`c219029`](https://github.com/open-telemetry/opentelemetry-go/commit/c2190296063f7d4558a5194de5fc497c04af423c) Update otel-collector example to use collector v0.5.0 ([#&#8203;915](https://github.com/open-telemetry/opentelemetry-go/issues/915)) [`1c6ca87`](https://github.com/open-telemetry/opentelemetry-go/commit/1c6ca87decabc937455719829c0b5d676c4a55ab) Ensure clientTracer closes http.headers span ([#&#8203;912](https://github.com/open-telemetry/opentelemetry-go/issues/912)) [`463c458`](https://github.com/open-telemetry/opentelemetry-go/commit/463c458daf9886e1880c158762ab406879763397) Add more database-specific semantic attributes ([#&#8203;899](https://github.com/open-telemetry/opentelemetry-go/issues/899)) [`5a4b68c`](https://github.com/open-telemetry/opentelemetry-go/commit/5a4b68c7bfd79f674a5d482b6d74a158d621099f) Add semantic convention for `faas.coldstart` and `container.id` ([#&#8203;909](https://github.com/open-telemetry/opentelemetry-go/issues/909)) [`eaa94e9`](https://github.com/open-telemetry/opentelemetry-go/commit/eaa94e92b93a85d204940e17624d0c52ad633f19) Avoid setting span status to Unknown when no HTTP status is provided; stdlib assumes it to be `200 OK` ([#&#8203;908](https://github.com/open-telemetry/opentelemetry-go/issues/908)) [`9342eb2`](https://github.com/open-telemetry/opentelemetry-go/commit/9342eb24f13afc5cd8b3b6f1b6ccc9c7b4291d89) Bump github.com/golangci/golangci-lint from 1.28.0 to 1.28.1 in /tools ([#&#8203;913](https://github.com/open-telemetry/opentelemetry-go/issues/913)) [`27e892a`](https://github.com/open-telemetry/opentelemetry-go/commit/27e892aad23241c19a55155fedcc980bc9db551e) Remove -v from Go tests ([#&#8203;904](https://github.com/open-telemetry/opentelemetry-go/issues/904)) [`bd1e174`](https://github.com/open-telemetry/opentelemetry-go/commit/bd1e174e60984a3524e6c189ba45316e6e55a241) Add "peer.service" semantic to standard attributes ([#&#8203;898](https://github.com/open-telemetry/opentelemetry-go/issues/898)) [`8d1f448`](https://github.com/open-telemetry/opentelemetry-go/commit/8d1f448ade33d18018907acb30a512fe4477d6fb) Bump github.com/golangci/golangci-lint from 1.27.0 to 1.28.0 in /tools ([#&#8203;901](https://github.com/open-telemetry/opentelemetry-go/issues/901)) [`550d365`](https://github.com/open-telemetry/opentelemetry-go/commit/550d365c545467f3c37078a59563f5a30316690d) fix trace event time conversion from internal to otlp ([#&#8203;896](https://github.com/open-telemetry/opentelemetry-go/issues/896)) [`f1e3536`](https://github.com/open-telemetry/opentelemetry-go/commit/f1e3536baf79c9bd53f7f676c3bb3a9e4adf0bae) Update opentracing dependency ([#&#8203;885](https://github.com/open-telemetry/opentelemetry-go/issues/885)) [`f4b1568`](https://github.com/open-telemetry/opentelemetry-go/commit/f4b156823c5027446bd314dd27de3354c3102023) Bump github.com/itchyny/gojq from 0.10.3 to 0.10.4 in /tools ([#&#8203;883](https://github.com/open-telemetry/opentelemetry-go/issues/883)) [`8205b0b`](https://github.com/open-telemetry/opentelemetry-go/commit/8205b0b1e0d4bc0e6a655f121016c6dd35affb9d) Update B3 header names ([#&#8203;881](https://github.com/open-telemetry/opentelemetry-go/issues/881)) [`2635f96`](https://github.com/open-telemetry/opentelemetry-go/commit/2635f96eba6517b44184866258f881a553d427eb) Ask for changelog updates with PRs ([#&#8203;879](https://github.com/open-telemetry/opentelemetry-go/issues/879)) ### [`v0.7.0`](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.7.0) [Compare Source](https://github.com/open-telemetry/opentelemetry-go/compare/v0.6.0...v0.7.0) This release implements the v0.5.0 version of the OpenTelemetry specification. ##### Added - The othttp instrumentation now includes default metrics. ([#&#8203;861](https://github.com/open-telemetry/opentelemetry-go/issues/861)) - This CHANGELOG file to track all changes in the project going forward. - Support for array type attributes. ([#&#8203;798](https://github.com/open-telemetry/opentelemetry-go/issues/798)) - Apply transitive dependabot go.mod dependency updates as part of a new automatic Github workflow. ([#&#8203;844](https://github.com/open-telemetry/opentelemetry-go/issues/844)) - Timestamps are now passed to exporters for each export. ([#&#8203;835](https://github.com/open-telemetry/opentelemetry-go/issues/835)) - Add new `Accumulation` type to metric SDK to transport telemetry from `Accumulator`s to `Processor`s. This replaces the prior `Record` `struct` use for this purpose. ([#&#8203;835](https://github.com/open-telemetry/opentelemetry-go/issues/835)) - New dependabot integration to automate package upgrades. ([#&#8203;814](https://github.com/open-telemetry/opentelemetry-go/issues/814)) - `Meter` and `Tracer` implementations accept instrumentation version version as an optional argument. This instrumentation version is passed on to exporters. ([#&#8203;811](https://github.com/open-telemetry/opentelemetry-go/issues/811)) ([#&#8203;805](https://github.com/open-telemetry/opentelemetry-go/issues/805)) ([#&#8203;802](https://github.com/open-telemetry/opentelemetry-go/issues/802)) - The OTLP exporter includes the instrumentation version in telemetry it exports. ([#&#8203;811](https://github.com/open-telemetry/opentelemetry-go/issues/811)) - Environment variables for Jaeger exporter are supported. ([#&#8203;796](https://github.com/open-telemetry/opentelemetry-go/issues/796)) - New `aggregation.Kind` in the export metric API. ([#&#8203;808](https://github.com/open-telemetry/opentelemetry-go/issues/808)) - New example that uses OTLP and the collector. ([#&#8203;790](https://github.com/open-telemetry/opentelemetry-go/issues/790)) - Handle errors in the span `SetName` during span initialization. ([#&#8203;791](https://github.com/open-telemetry/opentelemetry-go/issues/791)) - Default service config to enable retries for retry-able failed requests in the OTLP exporter and an option to override this default. ([#&#8203;777](https://github.com/open-telemetry/opentelemetry-go/issues/777)) - New `go.opentelemetry.io/otel/api/oterror` package to uniformly support error handling and definitions for the project. ([#&#8203;778](https://github.com/open-telemetry/opentelemetry-go/issues/778)) - New `global` default implementation of the `go.opentelemetry.io/otel/api/oterror.Handler` interface to be used to handle errors prior to an user defined `Handler`. There is also functionality for the user to register their `Handler` as well as a convenience function `Handle` to handle an error with this global `Handler`([#&#8203;778](https://github.com/open-telemetry/opentelemetry-go/issues/778)) - Options to specify propagators for httptrace and grpctrace instrumentation. ([#&#8203;784](https://github.com/open-telemetry/opentelemetry-go/issues/784)) - The required `application/json` header for the Zipkin exporter is included in all exports. ([#&#8203;774](https://github.com/open-telemetry/opentelemetry-go/issues/774)) - Integrate HTTP semantics helpers from the contrib repository into the `api/standard` package. [#&#8203;769](https://github.com/open-telemetry/opentelemetry-go/issues/769) ##### Changed - Rename `Integrator` to `Processor` in the metric SDK. ([#&#8203;863](https://github.com/open-telemetry/opentelemetry-go/issues/863)) - Rename `AggregationSelector` to `AggregatorSelector`. ([#&#8203;859](https://github.com/open-telemetry/opentelemetry-go/issues/859)) - Rename `SynchronizedCopy` to `SynchronizedMove`. ([#&#8203;858](https://github.com/open-telemetry/opentelemetry-go/issues/858)) - Rename `simple` integrator to `basic` integrator. ([#&#8203;857](https://github.com/open-telemetry/opentelemetry-go/issues/857)) - Merge otlp collector examples. ([#&#8203;841](https://github.com/open-telemetry/opentelemetry-go/issues/841)) - Change the metric SDK to support cumulative, delta, and pass-through exporters directly. With these changes, cumulative and delta specific exporters are able to request the correct kind of aggregation from the SDK. ([#&#8203;840](https://github.com/open-telemetry/opentelemetry-go/issues/840)) - The `Aggregator.Checkpoint` API is renamed to `SynchronizedCopy` and adds an argument, a different `Aggregator` into which the copy is stored. ([#&#8203;812](https://github.com/open-telemetry/opentelemetry-go/issues/812)) - The `export.Aggregator` contract is that `Update()` and `SynchronizedCopy()` are synchronized with each other. All the aggregation interfaces (`Sum`, `LastValue`, ...) are not meant to be synchronized, as the caller is expected to synchronize aggregators at a higher level after the `Accumulator`. Some of the `Aggregators` used unnecessary locking and that has been cleaned up. ([#&#8203;812](https://github.com/open-telemetry/opentelemetry-go/issues/812)) - Use of `metric.Number` was replaced by `int64` now that we use `sync.Mutex` in the `MinMaxSumCount` and `Histogram` `Aggregators`. ([#&#8203;812](https://github.com/open-telemetry/opentelemetry-go/issues/812)) - Replace `AlwaysParentSample` with `ParentSample(fallback)` to match the OpenTelemetry v0.5.0 specification. ([#&#8203;810](https://github.com/open-telemetry/opentelemetry-go/issues/810)) - Rename `sdk/export/metric/aggregator` to `sdk/export/metric/aggregation`. [#&#8203;808](https://github.com/open-telemetry/opentelemetry-go/issues/808) - Send configured headers with every request in the OTLP exporter, instead of just on connection creation. ([#&#8203;806](https://github.com/open-telemetry/opentelemetry-go/issues/806)) - Update error handling for any one off error handlers, replacing, instead, with the `global.Handle` function. ([#&#8203;791](https://github.com/open-telemetry/opentelemetry-go/issues/791)) - Rename `plugin` directory to `instrumentation` to match the OpenTelemetry specification. ([#&#8203;779](https://github.com/open-telemetry/opentelemetry-go/issues/779)) - Makes the argument order to Histogram and DDSketch `New()` consistent. ([#&#8203;781](https://github.com/open-telemetry/opentelemetry-go/issues/781)) ##### Removed - `Uint64NumberKind` and related functions from the API. ([#&#8203;864](https://github.com/open-telemetry/opentelemetry-go/issues/864)) - Context arguments from `Aggregator.Checkpoint` and `Integrator.Process` as they were unused. ([#&#8203;803](https://github.com/open-telemetry/opentelemetry-go/issues/803)) - `SpanID` is no longer included in parameters for sampling decision to match the OpenTelemetry specification. ([#&#8203;775](https://github.com/open-telemetry/opentelemetry-go/issues/775)) ##### Fixed - Upgrade OTLP exporter to opentelemetry-proto matching the opentelemetry-collector v0.4.0 release. ([#&#8203;866](https://github.com/open-telemetry/opentelemetry-go/issues/866)) - Allow changes to `go.sum` and `go.mod` when running dependabot tidy-up. ([#&#8203;871](https://github.com/open-telemetry/opentelemetry-go/issues/871)) - Bump github.com/stretchr/testify from 1.4.0 to 1.6.1. ([#&#8203;824](https://github.com/open-telemetry/opentelemetry-go/issues/824)) - Bump github.com/prometheus/client_golang from 1.7.0 to 1.7.1 in /exporters/metric/prometheus. ([#&#8203;867](https://github.com/open-telemetry/opentelemetry-go/issues/867)) - Bump google.golang.org/grpc from 1.29.1 to 1.30.0 in /exporters/trace/jaeger. ([#&#8203;853](https://github.com/open-telemetry/opentelemetry-go/issues/853)) - Bump google.golang.org/grpc from 1.29.1 to 1.30.0 in /exporters/trace/zipkin. ([#&#8203;854](https://github.com/open-telemetry/opentelemetry-go/issues/854)) - Bumps github.com/golang/protobuf from 1.3.2 to 1.4.2 ([#&#8203;848](https://github.com/open-telemetry/opentelemetry-go/issues/848)) - Bump github.com/stretchr/testify from 1.4.0 to 1.6.1 in /exporters/otlp ([#&#8203;817](https://github.com/open-telemetry/opentelemetry-go/issues/817)) - Bump github.com/golangci/golangci-lint from 1.25.1 to 1.27.0 in /tools ([#&#8203;828](https://github.com/open-telemetry/opentelemetry-go/issues/828)) - Bump github.com/prometheus/client_golang from 1.5.0 to 1.7.0 in /exporters/metric/prometheus ([#&#8203;838](https://github.com/open-telemetry/opentelemetry-go/issues/838)) - Bump github.com/stretchr/testify from 1.4.0 to 1.6.1 in /exporters/trace/jaeger ([#&#8203;829](https://github.com/open-telemetry/opentelemetry-go/issues/829)) - Bump github.com/benbjohnson/clock from 1.0.0 to 1.0.3 ([#&#8203;815](https://github.com/open-telemetry/opentelemetry-go/issues/815)) - Bump github.com/stretchr/testify from 1.4.0 to 1.6.1 in /exporters/trace/zipkin ([#&#8203;823](https://github.com/open-telemetry/opentelemetry-go/issues/823)) - Bump github.com/itchyny/gojq from 0.10.1 to 0.10.3 in /tools ([#&#8203;830](https://github.com/open-telemetry/opentelemetry-go/issues/830)) - Bump github.com/stretchr/testify from 1.4.0 to 1.6.1 in /exporters/metric/prometheus ([#&#8203;822](https://github.com/open-telemetry/opentelemetry-go/issues/822)) - Bump google.golang.org/grpc from 1.27.1 to 1.29.1 in /exporters/trace/zipkin ([#&#8203;820](https://github.com/open-telemetry/opentelemetry-go/issues/820)) - Bump google.golang.org/grpc from 1.27.1 to 1.29.1 in /exporters/trace/jaeger ([#&#8203;831](https://github.com/open-telemetry/opentelemetry-go/issues/831)) - Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 ([#&#8203;836](https://github.com/open-telemetry/opentelemetry-go/issues/836)) - Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 in /exporters/trace/jaeger ([#&#8203;837](https://github.com/open-telemetry/opentelemetry-go/issues/837)) - Bump github.com/google/go-cmp from 0.4.0 to 0.5.0 in /exporters/otlp ([#&#8203;839](https://github.com/open-telemetry/opentelemetry-go/issues/839)) - Bump google.golang.org/api from 0.20.0 to 0.28.0 in /exporters/trace/jaeger ([#&#8203;843](https://github.com/open-telemetry/opentelemetry-go/issues/843)) - Set span status from HTTP status code in the othttp instrumentation. ([#&#8203;832](https://github.com/open-telemetry/opentelemetry-go/issues/832)) - Fixed typo in push controller comment. ([#&#8203;834](https://github.com/open-telemetry/opentelemetry-go/issues/834)) - The `Aggregator` testing has been updated and cleaned. ([#&#8203;812](https://github.com/open-telemetry/opentelemetry-go/issues/812)) - `metric.Number(0)` expressions are replaced by `0` where possible. ([#&#8203;812](https://github.com/open-telemetry/opentelemetry-go/issues/812)) - Fixed `global` `handler_test.go` test failure. [#&#8203;804](https://github.com/open-telemetry/opentelemetry-go/issues/804) - Fixed `BatchSpanProcessor.Shutdown` to wait until all spans are processed. ([#&#8203;766](https://github.com/open-telemetry/opentelemetry-go/issues/766)) - Fixed OTLP example's accidental early close of exporter. ([#&#8203;807](https://github.com/open-telemetry/opentelemetry-go/issues/807)) - Ensure zipkin exporter reads and closes response body. ([#&#8203;788](https://github.com/open-telemetry/opentelemetry-go/issues/788)) - Update instrumentation to use `api/standard` keys instead of custom keys. ([#&#8203;782](https://github.com/open-telemetry/opentelemetry-go/issues/782)) - Clean up tools and RELEASING documentation. ([#&#8203;762](https://github.com/open-telemetry/opentelemetry-go/issues/762)) ### [`v0.6.0`](https://github.com/open-telemetry/opentelemetry-go/releases/tag/v0.6.0) [Compare Source](https://github.com/open-telemetry/opentelemetry-go/compare/v0.5.0...v0.6.0) ##### Added - Support for `Resource`s in the prometheus exporter. ([#&#8203;757](https://github.com/open-telemetry/opentelemetry-go/issues/757)) - New pull controller. ([#&#8203;751](https://github.com/open-telemetry/opentelemetry-go/issues/751)) - New `UpDownSumObserver` instrument. ([#&#8203;750](https://github.com/open-telemetry/opentelemetry-go/issues/750)) - OpenTelemetry collector demo. ([#&#8203;711](https://github.com/open-telemetry/opentelemetry-go/issues/711)) - New `SumObserver` instrument. ([#&#8203;747](https://github.com/open-telemetry/opentelemetry-go/issues/747)) - New `UpDownCounter` instrument. ([#&#8203;745](https://github.com/open-telemetry/opentelemetry-go/issues/745)) - New timeout `Option` and configuration function `WithTimeout` to the push controller. ([#&#8203;742](https://github.com/open-telemetry/opentelemetry-go/issues/742)) - New `api/standards` package to implement semantic conventions and standard key-value generation. ([#&#8203;731](https://github.com/open-telemetry/opentelemetry-go/issues/731)) ##### Changed - Rename `Register*` functions in the metric API to `New*` for all `Observer` instruments. ([#&#8203;761](https://github.com/open-telemetry/opentelemetry-go/issues/761)) - Use `[]float64` for histogram boundaries, not `[]metric.Number`. ([#&#8203;758](https://github.com/open-telemetry/opentelemetry-go/issues/758)) - Change OTLP example to use exporter as a trace `Syncer` instead of as an unneeded `Batcher`. ([#&#8203;756](https://github.com/open-telemetry/opentelemetry-go/issues/756)) - Replace `WithResourceAttributes()` with `WithResource()` in the trace SDK. ([#&#8203;754](https://github.com/open-telemetry/opentelemetry-go/issues/754)) - The prometheus exporter now uses the new pull controller. ([#&#8203;751](https://github.com/open-telemetry/opentelemetry-go/issues/751)) - Rename `ScheduleDelayMillis` to `BatchTimeout` in the trace `BatchSpanProcessor`.([#&#8203;752](https://github.com/open-telemetry/opentelemetry-go/issues/752)) - Support use of synchronous instruments in asynchronous callbacks ([#&#8203;725](https://github.com/open-telemetry/opentelemetry-go/issues/725)) - Move `Resource` from the `Export` method parameter into the metric export `Record`. ([#&#8203;739](https://github.com/open-telemetry/opentelemetry-go/issues/739)) - Rename `Observer` instrument to `ValueObserver`. ([#&#8203;734](https://github.com/open-telemetry/opentelemetry-go/issues/734)) - The push controller now has a method (`Provider()`) to return a `metric.Provider` instead of the old `Meter` method that acted as a `metric.Provider`. ([#&#8203;738](https://github.com/open-telemetry/opentelemetry-go/issues/738)) - Replace `Measure` instrument by `ValueRecorder` instrument. ([#&#8203;732](https://github.com/open-telemetry/opentelemetry-go/issues/732)) - Rename correlation context header from `"Correlation-Context"` to `"otcorrelations"` to match the OpenTelemetry specification. 727) ##### Fixed - Ensure gRPC `ClientStream` override methods do not panic in grpctrace package. ([#&#8203;755](https://github.com/open-telemetry/opentelemetry-go/issues/755)) - Disable parts of `BatchSpanProcessor` test until a fix is found. ([#&#8203;743](https://github.com/open-telemetry/opentelemetry-go/issues/743)) - Fix `string` case in `kv` `Infer` function. ([#&#8203;746](https://github.com/open-telemetry/opentelemetry-go/issues/746)) - Fix panic in grpctrace client interceptors. ([#&#8203;740](https://github.com/open-telemetry/opentelemetry-go/issues/740)) - Refactor the `api/metrics` push controller and add `CheckpointSet` synchronization. ([#&#8203;737](https://github.com/open-telemetry/opentelemetry-go/issues/737)) - Rewrite span batch process queue batching logic. ([#&#8203;719](https://github.com/open-telemetry/opentelemetry-go/issues/719)) - Remove the push controller named Meter map. ([#&#8203;738](https://github.com/open-telemetry/opentelemetry-go/issues/738)) - Fix Histogram aggregator initial state (fix [#&#8203;735](https://github.com/open-telemetry/opentelemetry-go/issues/735)). ([#&#8203;736](https://github.com/open-telemetry/opentelemetry-go/issues/736)) - Ensure golang alpine image is running `golang-1.14` for examples. ([#&#8203;733](https://github.com/open-telemetry/opentelemetry-go/issues/733)) - Added test for grpctrace `UnaryInterceptorClient`. ([#&#8203;695](https://github.com/open-telemetry/opentelemetry-go/issues/695)) - Rearrange `api/metric` code layout. ([#&#8203;724](https://github.com/open-telemetry/opentelemetry-go/issues/724)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM3LjQyNC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-01-20 02:57:20 +01:00
fix(deps): update opentelemetry-go monorepo
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
fffb567af2
Author
Owner

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: ci/go.sum
Command failed: go get -d -t ./...
go: -d flag is deprecated. -d=true is a no-op
go: dagger/ci imports
	dagger/ci/internal/dagger: package dagger/ci/internal/dagger is not in std (/opt/containerbase/tools/golang/1.23.6/src/dagger/ci/internal/dagger)

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: ci/go.sum ``` Command failed: go get -d -t ./... go: -d flag is deprecated. -d=true is a no-op go: dagger/ci imports dagger/ci/internal/dagger: package dagger/ci/internal/dagger is not in std (/opt/containerbase/tools/golang/1.23.6/src/dagger/ci/internal/dagger) ```
kjuulh force-pushed renovate/opentelemetry-go-monorepo from fffb567af2 to f7190d0786 2025-01-20 06:54:32 +01:00 Compare
kjuulh force-pushed renovate/opentelemetry-go-monorepo from f7190d0786 to 9694c3f936 2025-01-24 03:08:03 +01:00 Compare
kjuulh changed title from fix(deps): update opentelemetry-go monorepo to chore(deps): update opentelemetry-go monorepo to v0.10.0 2025-01-24 03:08:15 +01:00
kjuulh force-pushed renovate/opentelemetry-go-monorepo from 9694c3f936 to 672ac204c5 2025-01-28 02:59:41 +01:00 Compare
kjuulh force-pushed renovate/opentelemetry-go-monorepo from 672ac204c5 to 6edd01ba3b 2025-02-05 07:05:50 +01:00 Compare
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/opentelemetry-go-monorepo:renovate/opentelemetry-go-monorepo
git checkout renovate/opentelemetry-go-monorepo
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/orbis#6
No description provided.