Update module go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin to v0.44.0 [SECURITY] #72
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 PR contains the following updates:
v0.13.0->v0.44.0GitHub Vulnerability Alerts
CVE-2023-45142
Summary
This handler wrapper https://github.com/open-telemetry/opentelemetry-go-contrib/blob/5f7e6ad5a49b45df45f61a1deb29d7f1158032df/instrumentation/net/http/otelhttp/handler.go#L63-L65
out of the box adds labels
http.user_agenthttp.methodthat have unbound cardinality. It leads to the server's potential memory exhaustion when many malicious requests are sent to it.
Details
HTTP header User-Agent or HTTP method for requests can be easily set by an attacker to be random and long. The library internally uses httpconv.ServerRequest that records every value for HTTP method and User-Agent.
PoC
Send many requests with long randomly generated HTTP methods or/and User agents (e.g. a million) and observe how memory consumption increases during it.
Impact
In order to be affected, the program has to configure a metrics pipeline, use otelhttp.NewHandler wrapper, and does not filter any unknown HTTP methods or User agents on the level of CDN, LB, previous middleware, etc.
Others
It is similar to already reported vulnerabilities
Workaround for affected versions
As a workaround to stop being affected otelhttp.WithFilter() can be used, but it requires manual careful configuration to not log certain requests entirely.
For convenience and safe usage of this library, it should by default mark with the label
unknownnon-standard HTTP methods and User agents to show that such requests were made but do not increase cardinality. In case someone wants to stay with the current behavior, library API should allow to enable it.The other possibility is to disable HTTP metrics instrumentation by passing
otelhttp.WithMeterProvideroption withnoop.NewMeterProvider.Solution provided by upgrading
In PR https://github.com/open-telemetry/opentelemetry-go-contrib/pull/4277, released with package version 0.44.0, the values collected for attribute
http.request.methodwere changed to be restricted to a set of well-known values and other high cardinality attributes were removed.References
Release Notes
open-telemetry/opentelemetry-go-contrib (go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin)
v0.24.0Compare Source
0.24.0 - 2021-09-21
Update dependency on the
go.opentelemetry.io/otelproject tov1.0.0.v0.23.0Compare Source
0.23.0 - 2021-09-09
Added
WithoutSubSpans,WithRedactedHeaders,WithoutHeaders, andWithInsecureHeadersoptions forotelhttptrace.NewClientTrace. (#879)Changed
go.opentelemetry.io/contrib/propagatorsmodule intob3,jaeger,otmodules. (#985)otelmongodbspan attributes, name and span status now conform to specification. (#769)go.opentelemetry.io/contrib/detectors/awsto a separate EC2 resource detector modulego.opentelemetry.io/contrib/detectors/aws/ec2(#1017)cloud.providerandcloud.platformto AWS detectors. (#1043)otelhttptrace.NewClientTracenow redacts known sensitive headers by default. (#879)Fixed
otelhttp.TransportwhenRoundTripfails with an error. (#950)v0.22.0Compare Source
Added
zpagesspan processor. (#894)Changed
b3.B3type has been removed.b3.New()andb3.WithInjectEncoding(encoding)are added to replace it. (#868)Fixed
otelsarama.WrapAsyncProducer.The
messaging.message_idandmessaging.kafka.partitionattributes are now not set if a message was not processed. (#754) (#755) (#881)otelsarama.WrapAsyncProducerso that the messages from theErrorschannel contain the originalMetadata. (#754)v0.21.0Compare Source
0.21.0 - 2021-06-18
Fixed
otelginandotelmacaron. (#767)Changed
Removed
otelmongodbconfiguration and span attributes. (#763)v0.20.0Compare Source
Changed
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongoinstrumentation now accepts aWithCommandAttributeDisabled,so the caller can specify whether to opt-out of tracing the mongo command. (#712)
go.opentelemetry.io/otel. (#758)Raw changes made between v0.19.0 and v0.20.0
0e5bef9(HEAD -> main, tag: v0.20.0, tag: propagators/v0.20.0, tag: propagators/opencensus/v0.20.0, tag: propagators/opencensus/examples/v0.20.0, tag: propagators/aws/v0.20.0, tag: instrumentation/runtime/v0.20.0, tag: instrumentation/runtime/example/v0.20.0, tag: instrumentation/net/http/otelhttp/v0.20.0, tag: instrumentation/net/http/otelhttp/example/v0.20.0, tag: instrumentation/net/http/httptrace/otelhttptrace/v0.20.0, tag: instrumentation/net/http/httptrace/otelhttptrace/example/v0.20.0, tag: instrumentation/host/v0.20.0, tag: instrumentation/host/example/v0.20.0, tag: instrumentation/gopkg.in/macaron.v1/otelmacaron/v0.20.0, tag: instrumentation/gopkg.in/macaron.v1/otelmacaron/example/v0.20.0, tag: instrumentation/google.golang.org/grpc/otelgrpc/v0.20.0, tag: instrumentation/google.golang.org/grpc/otelgrpc/example/v0.20.0, tag: instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/v0.20.0, tag: instrumentation/github.com/labstack/echo/otelecho/v0.20.0, tag: instrumentation/github.com/labstack/echo/otelecho/example/v0.20.0, tag: instrumentation/github.com/gorilla/mux/otelmux/v0.20.0, tag: instrumentation/github.com/gorilla/mux/otelmux/example/v0.20.0, tag: instrumentation/github.com/gocql/gocql/otelgocql/v0.20.0, tag: instrumentation/github.com/gocql/gocql/otelgocql/example/v0.20.0, tag: instrumentation/github.com/go-kit/kit/otelkit/v0.20.0, tag: instrumentation/github.com/go-kit/kit/otelkit/example/v0.20.0, tag: instrumentation/github.com/gin-gonic/gin/otelgin/v0.20.0, tag: instrumentation/github.com/gin-gonic/gin/otelgin/example/v0.20.0, tag: instrumentation/github.com/emicklei/go-restful/otelrestful/v0.20.0, tag: instrumentation/github.com/emicklei/go-restful/otelrestful/example/v0.20.0, tag: instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/v0.20.0, tag: instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/example/v0.20.0, tag: instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/v0.20.0, tag: instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/example/v0.20.0, tag: instrumentation/github.com/astaxie/beego/otelbeego/v0.20.0, tag: instrumentation/github.com/astaxie/beego/otelbeego/example/v0.20.0, tag: instrumentation/github.com/Shopify/sarama/otelsarama/v0.20.0, tag: instrumentation/github.com/Shopify/sarama/otelsarama/example/v0.20.0, tag: exporters/metric/dogstatsd/v0.20.0, tag: exporters/metric/datadog/v0.20.0, tag: exporters/metric/cortex/v0.20.0, tag: exporters/metric/cortex/utils/v0.20.0, tag: exporters/metric/cortex/example/v0.20.0, tag: detectors/gcp/v0.20.0, tag: detectors/aws/v0.20.0, tag: detectors/aws/eks/v0.20.0, tag: detectors/aws/ecs/v0.20.0, upstream/main, origin/main) Release v0.20.0 (#758)4d6b37eupdate grpc example commands (#756)7b51f7aBump github.com/emicklei/go-restful/v3 from 3.5.0 to 3.5.1 in /instrumentation/github.com/emicklei/go-restful/otelrestful (#753)8db2eaeBump actions/cache from v2.1.4 to v2.1.5 (#752)57cfdfcBump github.com/aws/aws-sdk-go from 1.38.17 to 1.38.21 in /detectors/aws (#751)e1a7c47Bump github.com/emicklei/go-restful/v3 (#745)b82a9a1Bump github.com/labstack/echo/v4 from 4.2.1 to 4.2.2 in /instrumentation/github.com/labstack/echo/otelecho (#737)960b296Bump github.com/gin-gonic/gin from 1.6.3 to 1.7.1 in /instrumentation/github.com/gin-gonic/gin/otelgin (#736)ac15859Bump google.golang.org/grpc from 1.36.1 to 1.37.0 in /instrumentation/google.golang.org/grpc/otelgrpc (#740)988a57dBump github.com/emicklei/go-restful/v3 from 3.4.0 to 3.5.0 in /instrumentation/github.com/emicklei/go-restful/otelrestful (#735)892d7f9Bump github.com/aws/aws-sdk-go from 1.38.12 to 1.38.17 in /detectors/aws (#734)5b82c08Add WithCommandLoggingDisabled to otelmongo tracer (#723)ae2c628otelhttp: handle nil base http transport (#713)e8c2192Bump github.com/golang/protobuf from 1.5.1 to 1.5.2 in /instrumentation/google.golang.org/grpc/otelgrpc (#730)e416457Bump go.mongodb.org/mongo-driver (#731)3e90802Bump cloud.google.com/go from 0.80.0 to 0.81.0 in /detectors/gcp (#729)13ba41fBump github.com/golang/protobuf (#728)4c3fcb8Bump github.com/aws/aws-sdk-go from 1.38.7 to 1.38.12 in /detectors/aws (#727)2760096fix import link (#724)0b89c82Bump github.com/golangci/golangci-lint from 1.38.0 to 1.39.0 in /tools (#717)ec6d93dBump cloud.google.com/go from 0.79.0 to 0.80.0 in /detectors/gcp (#716)8d7211fBump github.com/aws/aws-sdk-go from 1.38.1 to 1.38.7 in /detectors/aws (#715)0cca425Bump google.golang.org/grpc from 1.36.0 to 1.36.1 in /instrumentation/google.golang.org/grpc/otelgrpc (#718)5ec7f3cfix cortex example code (#722)a51c8dfUpdate project approvers (#721)9d0d9d9support aws sdk go for v2 instrumentation (#621)c332299Update InjectEncoding doc for B3 (#710)09e3a12Bump github.com/golang/protobuf from 1.4.3 to 1.5.1 in /instrumentation/google.golang.org/grpc/otelgrpc (#681)454823fBump github.com/aws/aws-sdk-go from 1.37.30 to 1.38.1 in /detectors/aws (#708)v0.19.0Compare Source
Changed
go.opentelemetry.io/otel.Raw changes made between v0.18.0 and v0.19.0
e78bad2(tag: v0.19.0, tag: propagators/v0.19.0, tag: propagators/opencensus/v0.19.0, tag: propagators/opencensus/examples/v0.19.0, tag: propagators/aws/v0.19.0, tag: instrumentation/runtime/v0.19.0, tag: instrumentation/runtime/example/v0.19.0, tag: instrumentation/net/http/otelhttp/v0.19.0, tag: instrumentation/net/http/otelhttp/example/v0.19.0, tag: instrumentation/net/http/httptrace/otelhttptrace/v0.19.0, tag: instrumentation/net/http/httptrace/otelhttptrace/example/v0.19.0, tag: instrumentation/host/v0.19.0, tag: instrumentation/host/example/v0.19.0, tag: instrumentation/gopkg.in/macaron.v1/otelmacaron/v0.19.0, tag: instrumentation/gopkg.in/macaron.v1/otelmacaron/example/v0.19.0, tag: instrumentation/google.golang.org/grpc/otelgrpc/v0.19.0, tag: instrumentation/google.golang.org/grpc/otelgrpc/example/v0.19.0, tag: instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/v0.19.0, tag: instrumentation/github.com/labstack/echo/otelecho/v0.19.0, tag: instrumentation/github.com/labstack/echo/otelecho/example/v0.19.0, tag: instrumentation/github.com/gorilla/mux/otelmux/v0.19.0, tag: instrumentation/github.com/gorilla/mux/otelmux/example/v0.19.0, tag: instrumentation/github.com/gocql/gocql/otelgocql/v0.19.0, tag: instrumentation/github.com/gocql/gocql/otelgocql/example/v0.19.0, tag: instrumentation/github.com/go-kit/kit/otelkit/v0.19.0, tag: instrumentation/github.com/go-kit/kit/otelkit/example/v0.19.0, tag: instrumentation/github.com/gin-gonic/gin/otelgin/v0.19.0, tag: instrumentation/github.com/gin-gonic/gin/otelgin/example/v0.19.0, tag: instrumentation/github.com/emicklei/go-restful/otelrestful/v0.19.0, tag: instrumentation/github.com/emicklei/go-restful/otelrestful/example/v0.19.0, tag: instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/v0.19.0, tag: instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/example/v0.19.0, tag: instrumentation/github.com/astaxie/beego/otelbeego/v0.19.0, tag: instrumentation/github.com/astaxie/beego/otelbeego/example/v0.19.0, tag: instrumentation/github.com/Shopify/sarama/otelsarama/v0.19.0, tag: instrumentation/github.com/Shopify/sarama/otelsarama/example/v0.19.0, tag: exporters/metric/dogstatsd/v0.19.0, tag: exporters/metric/datadog/v0.19.0, tag: exporters/metric/cortex/v0.19.0, tag: exporters/metric/cortex/utils/v0.19.0, tag: exporters/metric/cortex/example/v0.19.0, tag: detectors/gcp/v0.19.0, tag: detectors/aws/v0.19.0, tag: detectors/aws/eks/v0.19.0, tag: detectors/aws/ecs/v0.19.0, upstream/main) Release v0.19.0 (#624)ef90356Use SingleHeader format for unspecified B3 inject encoding (#614)7a8e6f5Bump github.com/labstack/echo/v4 from 4.2.0 to 4.2.1 in /instrumentation/github.com/labstack/echo/otelecho (#617)542f258Bump github.com/aws/aws-sdk-go from 1.37.25 to 1.37.30 in /detectors/aws (#616)a12fd56Bump github.com/aws/aws-sdk-go from 1.37.24 to 1.37.25 in /detectors/aws (#608)3fcec94Add docs on when reviews should be cleared (#583)542d974Bump github.com/google/go-cmp from 0.5.4 to 0.5.5 in /detectors/gcp (#607)e5c4835Bump github.com/aws/aws-sdk-go from 1.37.20 to 1.37.24 in /detectors/aws (#605)e438852Bump github.com/google/go-cmp from 0.5.4 to 0.5.5 in /propagators/opencensus (#604)1b4820cBump github.com/google/go-cmp from 0.5.4 to 0.5.5 in /exporters/metric/cortex (#603)c4d426fBump github.com/google/go-cmp from 0.5.4 to 0.5.5 in /propagators (#602)d953e15Bump github.com/google/go-cmp from 0.5.4 to 0.5.5 in /instrumentation/net/http/httptrace/otelhttptrace (#601)384173eBump github.com/golangci/golangci-lint from 1.37.1 to 1.38.0 in /tools (#606)cc31f43Add go-kit instrumentation library (#456)v0.18.0Compare Source
Fixed
otelmemcacheno longer sets span status to OK instead of leaving it unset. (#477)StreamClientInterceptor. (#581)Removed
otelmemcacheconfiguration and span attributes. (#477)Raw changes made between v0.17.0 and v0.18.0
839e505Bumping otel version to v0.18.0. Prepare for releasing v0.18.0 (#600)f82555bBump google.golang.org/grpc from 1.35.0 to 1.36.0 in /instrumentation/google.golang.org/grpc/otelgrpc (#594)8fb6eb1Bump google.golang.org/grpc (#593)b3b6ccdBump github.com/aws/aws-sdk-go from 1.37.15 to 1.37.20 in /detectors/aws (#591)5783e2dBump github.com/golang/snappy from 0.0.2 to 0.0.3 in /exporters/metric/cortex (#592)3c49aebBump cloud.google.com/go from 0.77.0 to 0.78.0 in /detectors/gcp (#595)a2de3b6Bump google.golang.org/grpc in /propagators/opencensus/examples (#596)f011c95Bump github.com/Shopify/sarama from 1.27.2 to 1.28.0 in /instrumentation/github.com/Shopify/sarama/otelsarama (#588)598a707Bump go.uber.org/goleak from 1.1.0 to 1.1.10 in /instrumentation/google.golang.org/grpc/otelgrpc (#587)e5fef66Bump cloud.google.com/go from 0.76.0 to 0.77.0 in /detectors/gcp (#586)8334b44Bump github.com/golangci/golangci-lint from 1.36.0 to 1.37.1 in /tools (#585)462580eBump github.com/aws/aws-sdk-go from 1.37.10 to 1.37.15 in /detectors/aws (#584)f875adfUpdate docs from gitter to slack for communication (#582)3349bafotelmemcache: Simplify config and span status setting (#477)62c8535Fix goroutine leak in gRPC StreamClientInterceptor (#581)0fe4199Update AWS detector assert dependency (#574)v0.17.0Compare Source
Update
go.opentelemetry.io/oteldependency to v0.17.0Added
ot-tracerpropagator (#562)Changed
mastertomain.Fixed
Raw changes made between v0.16.0 and v0.17.0
cabeeb5Bump github.com/labstack/echo/v4 from 4.1.17 to 4.2.0 in /instrumentation/github.com/labstack/echo/otelecho (#577)7fe84fdBump github.com/labstack/echo/v4 (#578)8d6e61bBump github.com/aws/aws-sdk-go from 1.37.6 to 1.37.10 in /detectors/aws (#576)bd90f3eEks resource detector bugfix (#575)e532370(origin/main) Fix ECS resource detector bug (#569)b87d221Bump cloud.google.com/go from 0.75.0 to 0.76.0 in /detectors/gcp (#572)957a23cBump actions/cache from v2 to v2.1.4 (#571)e3b511eBump github.com/aws/aws-sdk-go from 1.37.1 to 1.37.6 in /detectors/aws (#570)33003ddBump go.mongodb.org/mongo-driver (#573)cc69f93added failure message - ECS resource detector (#568)fd60b5fAdd ot-tracer-* propagator (#562)bc8b54dUpdate default branch name to main (#567)e0fb74fBump github.com/golangci/golangci-lint from 1.35.2 to 1.36.0 in /tools (#565)feebb9bBump github.com/aws/aws-sdk-go from 1.36.29 to 1.37.1 in /detectors/aws (#566)a7d455d(upstream/master) Update workflows to include main branch as trigger (#564)90490ec(origin/master, origin/HEAD) Bump github.com/aws/aws-sdk-go from 1.36.23 to 1.36.29 in /detectors/aws (#558)33f383bBump cloud.google.com/go from 0.74.0 to 0.75.0 in /detectors/gcp (#531)6e9f6d3Bump google.golang.org/grpc from 1.34.0 to 1.35.0 in /instrumentation/google.golang.org/grpc/otelgrpc (#543)a101606Bump github.com/gogo/protobuf from 1.3.1 to 1.3.2 in /exporters/metric/cortex (#530)3d7fac5Upgrade github.com/stretchr/testify from v1.6.1 to v1.7.0 (#557)40b35ecBump github.com/golangci/golangci-lint from 1.35.0 to 1.35.2 in /tools (#526)37f53a3Bump github.com/stretchr/testify from 1.6.1 to 1.7.0 in /instrumentation/runtime (#525)a77bcb3Bump github.com/stretchr/testify in /exporters/metric/dogstatsd (#524)77a5929Bump google.golang.org/grpc (#545)bc4e070Add code-coverage configuration to allow 1% delta (#555)v0.16.0Compare Source
[0.16.0] - 2021-01-14
Fixed
Raw changes made between v0.15.1 and v0.16.0
65367f2Prepare v0.16.0 release (#523)cd07cf3Fix module path for AWS ECS resource detector (#517)c07a08fBump github.com/golangci/golangci-lint from 1.34.1 to 1.35.0 in /tools (#519)7717b1dBump github.com/aws/aws-sdk-go from 1.36.19 to 1.36.23 in /detectors/aws (#520)c047d14Update CI badge for README (#516)cede46cMerge code coverage output into single file for codecov.io (#514)26c2b18Remove CircleCI config (#513)0ca2a70Adding Security Workflows to GitHub Actions (2/2): gosec workflow (#507)f6da9dbAdding Security Workflows to GitHub Actions (1/2): codeql workflow (#506)ccf6b73Bump github.com/aws/aws-sdk-go from 1.36.15 to 1.36.19 in /detectors/aws (#511)3e8de75Bump github.com/golangci/golangci-lint from 1.33.0 to 1.34.1 in /tools (#510)faf24adAdd @dashpole as a project Approver (#498)c1aee10Add instrumentation request issue templates (#500)c9c0a40Bump github.com/aws/aws-sdk-go from 1.36.12 to 1.36.15 in /detectors/aws (#503)683e08eBump github.com/aws/aws-sdk-go from 1.36.7 to 1.36.12 in /detectors/aws (#499)ec22a4dadding fetch depth (#497)31b2ca6Migrate CircleCI ci.yml workflow to GitHub Actions (#476)v0.15.1Compare Source
[0.15.1] - 2020-12-14
Added
Makefileand pre-release script. (#446)Fixed
Raw changes made between v0.15.0 and v0.15.1
e484e9ePrepare for releasing v0.15.1 (#496)22c3914Bundle Dependabot Updates (#495)3321403Bump github.com/aws/aws-sdk-go from 1.36.2 to 1.36.7 in /detectors/aws (#488)f899260Add AWS X-Ray ID Generator (#459)f96a4bdAdd registry link check target to Makefile (#446)c1c564ftests(otelhttp): fixes the body replacement in otelhttp to not to mutate a nil body. (#484)v0.15.0Compare Source
[0.15.0] - 2020-12-11
Added
gcp.CloudRundetector for detecting resource from a Cloud Run instance. (#455)Raw changes made between v0.14.0 and v0.15.0
e7b70ebPrepare for v0.15.0 release (#486)54c6a6cAdd detector for Cloud Run service. (#455)79af2e9Bump google.golang.org/grpc from 1.33.2 to 1.34.0 in /instrumentation/google.golang.org/grpc/otelgrpc (#481)fd9db4aBump cloud.google.com/go from 0.72.0 to 0.73.0 in /detectors/gcp (#483)8f0fa29Bump google.golang.org/grpc from 1.33.2 to 1.34.0 in /instrumentation/google.golang.org/grpc/otelgrpc/example (#482)401ff52Bump google.golang.org/grpc from 1.33.2 to 1.34.0 in /propagators/opencensus/examples (#480)da8faf5Bump github.com/aws/aws-sdk-go from 1.35.35 to 1.36.2 in /detectors/aws (#479)b02fae7Add Amazon EKS Resource Detector (#465)d1534b8add opencensus propagation readme and example (#473)e1c598cAdd AWS X-Ray Propagator (#462)f9f5a21move opencensus binary propagation to contrib (#467)82eb6a3Bump github.com/google/go-cmp from 0.5.3 to 0.5.4 in /instrumentation/net/http/httptrace/otelhttptrace (#472)7ffe595Bump github.com/google/go-cmp from 0.5.3 to 0.5.4 in /propagators (#471)be1c230Bump github.com/google/go-cmp from 0.5.3 to 0.5.4 in /exporters/metric/cortex (#470)59c92e2Bump github.com/aws/aws-sdk-go from 1.35.33 to 1.35.35 in /detectors/aws (#469)9e9f21bBump github.com/golangci/golangci-lint from 1.32.2 to 1.33.0 in /tools (#468)645d23aAdd Amazon ECS Resource Detector (#466)d648427Bump github.com/aws/aws-sdk-go from 1.35.28 to 1.35.33 in /detectors/aws (#463)3be1f0dBump github.com/Shopify/sarama from 1.27.0 to 1.27.2 in /instrumentation/github.com/Shopify/sarama/otelsarama (#464)v0.14.0Compare Source
Added
otelhttp.{Get,Head,Post,PostForm}convenience wrappers for theirhttpcounterparts. (#390)Resource. (#410)Changed
Tracer/Metercreated by instrumentation packagesotelsaram,otelrestful,otelmongo,otelhttpandotelhttptrace. (#412)go.opentelemetry.io/otel. (#414)rpc.grpc.status_code. (#453)Fixed
/detectors/awsno longer fails if instance metadata is not available (e.g. not running in AWS) (#401)Resourceidentity. (#410)hostinstrumentation unit test has been updated to not depend on the system it runs on. (#426)Raw changes made between v0.13.0 and v0.14.0
Configuration
📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.