Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable and enforce goleak in all packages #30438

Open
crobert-1 opened this issue Jan 11, 2024 · 8 comments
Open

Enable and enforce goleak in all packages #30438

crobert-1 opened this issue Jan 11, 2024 · 8 comments
Assignees
Labels
enhancement New feature or request

Comments

@crobert-1
Copy link
Member

Component(s)

No response

Is your feature request related to a problem? Please describe.

There's currently no widespread testing in this repository for detecting leaking goroutines. Leaked goroutines are a result of improperly handling concurrency in golang, and a common cause of memory leaks.

Describe the solution you'd like

goleak is a testing tool used to detect leaking goroutines. This is currently being done in core (#9165) and would be useful in contrib as well.

Describe alternatives you've considered

No response

Additional context

No response

@crobert-1 crobert-1 added enhancement New feature or request needs triage New item requiring triage labels Jan 11, 2024
@crobert-1 crobert-1 self-assigned this Jan 11, 2024
@crobert-1
Copy link
Member Author

crobert-1 commented Jan 11, 2024

A couple notes from my initial efforts:

  1. The tailsampling processor is the only existing package that already uses goleak.
  2. For goleak to work properly it's required to run from the TestMain function of testing. However, the following packages already use TestMain. I'll have to investigate to determine how to use TestMain to accomplish existing functionality as well as goleak for each of these packages.
./testbed/tests/trace_test.go
./testbed/stabilitytests/trace_test.go
./testbed/correctnesstests/traces/correctness_test.go
./exporter/splunkhecexporter/integration_test.go
./exporter/kineticaexporter/exporter_metric_test.go
./exporter/datadogexporter/traces_exporter_test.go

@crobert-1
Copy link
Member Author

I decided to upgrade my bash script for adding goleak to make it do everything in one go, without manual intervention. This used some commands from contrib's makefile to get all go packages, and then filter down to only packages containing tests. The script also now cleans up failing tests to clearly delineate which tests are successul, which are failing.

ALL_PKG_DIRS=$(go list -f '{{ .Dir }}' ./... | sort)
ALL_SRC=$(find $ALL_PKG_DIRS -name '*.go' -not -path '*/third_party/*' -not -path '*/local/*' -type f | sort)
ALL_PKGS_WITH_TESTS=$(dirname $(find $ALL_PKG_DIRS -name '*.go' -not -path '*/third_party/*' -not -path '*/local/*' -type f | grep test.go) | sort --unique)

FAILED_PACKAGES_LIST_FILE="/Users/crobert/dev/opentelemetry-collector-contrib/failed_packages.txt"

for pkg_dir in $ALL_PKGS_WITH_TESTS;
do
  if [[ "$pkg_dir" == '/Users/crobert/dev/opentelemetry-collector-contrib' ]]; then
    echo "Skipping repo head dir"
    continue
  fi

  echo "Attempting package: $pkg_dir"
  cp ./package_test.go $pkg_dir

  PACKAGE_NAME=$(basename $pkg_dir)

  sed -i '' -e "s|package component|package $PACKAGE_NAME|g" $pkg_dir/package_test.go

  pushd . > /dev/null
  cd $pkg_dir
  echo "Running go mod tidy"
  go mod tidy
  echo "Running go test"
  go test -v . > /dev/null
  if [ $? -eq 0 ]; then
    echo "Package was successful"
  else
    echo "Package was not successful"
    echo "$pkg_dir" >> $FAILED_PACKAGES_LIST_FILE
    rm $pkg_dir/package_test.go
    go mod tidy
  fi
  popd > /dev/null
done

Sample output:

~/dev/opentelemetry-collector-contrib $ ./add_leak_test.sh 
Skipping repo head dir
Attempting package: /Users/crobert/dev/opentelemetry-collector-contrib/cmd/configschema
Running go mod tidy
Running go test
Package was not successful
...
Attempting package: /Users/crobert/dev/opentelemetry-collector-contrib/cmd/mdatagen/internal/metadata
Running go mod tidy
Running go test
Package was successful

@crobert-1
Copy link
Member Author

crobert-1 commented Jan 11, 2024

Here's the initial list of failing packages:

./cmd/configschema
./cmd/configschema/cfgmetadatagen/cfgmetadatagen
./cmd/configschema/docsgen/docsgen
./cmd/mdatagen
./cmd/mdatagen/internal/metadata
./cmd/opampsupervisor
./cmd/otelcontribcol
./cmd/oteltestbedcol
./cmd/telemetrygen
./cmd/telemetrygen/internal/e2etest
./connector/countconnector
./connector/datadogconnector
./connector/exceptionsconnector
./connector/failoverconnector
./connector/routingconnector
./connector/servicegraphconnector
./connector/spanmetricsconnector
./exporter/alertmanagerexporter
./exporter/alibabacloudlogserviceexporter
./exporter/awscloudwatchlogsexporter
./exporter/awsemfexporter
./exporter/awskinesisexporter
./exporter/awss3exporter
./exporter/awsxrayexporter
./exporter/azuredataexplorerexporter
./exporter/azuremonitorexporter
./exporter/carbonexporter
./exporter/cassandraexporter
./exporter/clickhouseexporter
./exporter/coralogixexporter
./exporter/datadogexporter
./exporter/datadogexporter/integrationtest
./exporter/datadogexporter/internal/clientutil
./exporter/datadogexporter/internal/hostmetadata
./exporter/datadogexporter/internal/hostmetadata/internal/gohai
./exporter/datadogexporter/internal/hostmetadata/provider
./exporter/datadogexporter/internal/logs
./exporter/datadogexporter/internal/metrics
./exporter/datadogexporter/internal/testutil
./exporter/datasetexporter
./exporter/dynatraceexporter
./exporter/dynatraceexporter/config
./exporter/elasticsearchexporter
./exporter/f5cloudexporter
./exporter/fileexporter
./exporter/googlecloudexporter
./exporter/googlecloudpubsubexporter
./exporter/googlemanagedprometheusexporter
./exporter/honeycombmarkerexporter
./exporter/influxdbexporter
./exporter/instanaexporter
./exporter/kafkaexporter
./exporter/kineticaexporter
./exporter/loadbalancingexporter
./exporter/logicmonitorexporter
./exporter/logicmonitorexporter/internal/logs
./exporter/logicmonitorexporter/internal/traces
./exporter/logzioexporter
./exporter/lokiexporter
./exporter/mezmoexporter
./exporter/opencensusexporter
./exporter/opensearchexporter
./exporter/prometheusexporter
./exporter/prometheusremotewriteexporter
./exporter/pulsarexporter
./exporter/sapmexporter
./exporter/sentryexporter
./exporter/signalfxexporter
./exporter/signalfxexporter/internal/correlation
./exporter/signalfxexporter/internal/dimensions
./exporter/signalfxexporter/internal/hostmetadata
./exporter/signalfxexporter/internal/translation
./exporter/skywalkingexporter
./exporter/splunkhecexporter
./exporter/sumologicexporter
./exporter/syslogexporter
./exporter/tencentcloudlogserviceexporter
./exporter/zipkinexporter
./extension/asapauthextension
./extension/awsproxy
./extension/basicauthextension
./extension/bearertokenauthextension
./extension/encoding/jaegerencodingextension
./extension/encoding/jsonlogencodingextension
./extension/encoding/otlpencodingextension
./extension/encoding/textencodingextension
./extension/encoding/zipkinencodingextension
./extension/headerssetterextension
./extension/healthcheckextension
./extension/httpforwarder
./extension/jaegerremotesampling
./extension/jaegerremotesampling/internal
./extension/oauth2clientauthextension
./extension/observer/dockerobserver
./extension/observer/ecsobserver
./extension/observer/ecstaskobserver
./extension/observer/hostobserver
./extension/observer/k8sobserver
./extension/oidcauthextension
./extension/opampextension
./extension/pprofextension
./extension/remotetapextension
./extension/sigv4authextension
./extension/storage/dbstorage
./extension/storage/filestorage
./extension/storage/storagetest
./internal/aws/ecsutil
./internal/aws/k8s/k8sclient
./internal/aws/proxy
./internal/aws/xray
./internal/aws/xray/telemetry
./internal/common/ttlmap
./internal/datadog
./internal/docker
./internal/filter/filterottl
./internal/metadataproviders/aws/ec2
./internal/metadataproviders/azure
./internal/sharedcomponent
./internal/splunk
./pkg/ottl
./pkg/ottl/e2e
./pkg/ottl/ottlfuncs
./pkg/stanza/adapter
./pkg/stanza/operator/helper
./pkg/stanza/operator/parser/regex
./pkg/stanza/operator/transformer/recombine
./processor/attributesprocessor
./processor/cumulativetodeltaprocessor
./processor/datadogprocessor
./processor/deltatorateprocessor
./processor/filterprocessor
./processor/groupbyattrsprocessor
./processor/groupbytraceprocessor
./processor/k8sattributesprocessor
./processor/k8sattributesprocessor/internal/kube
./processor/k8sattributesprocessor/internal/observability
./processor/logstransformprocessor
./processor/metricsgenerationprocessor
./processor/metricstransformprocessor
./processor/probabilisticsamplerprocessor
./processor/redactionprocessor
./processor/remotetapprocessor
./processor/resourcedetectionprocessor
./processor/resourcedetectionprocessor/internal
./processor/resourcedetectionprocessor/internal/aws/ec2
./processor/resourcedetectionprocessor/internal/aws/ecs
./processor/resourcedetectionprocessor/internal/aws/eks
./processor/resourcedetectionprocessor/internal/aws/elasticbeanstalk
./processor/resourcedetectionprocessor/internal/aws/lambda
./processor/resourcedetectionprocessor/internal/azure
./processor/resourcedetectionprocessor/internal/azure/aks
./processor/resourcedetectionprocessor/internal/docker
./processor/resourcedetectionprocessor/internal/env
./processor/resourcedetectionprocessor/internal/heroku
./processor/resourcedetectionprocessor/internal/k8snode
./processor/resourcedetectionprocessor/internal/system
./processor/resourceprocessor
./processor/routingprocessor
./processor/schemaprocessor
./processor/servicegraphprocessor
./processor/spanmetricsprocessor
./processor/spanprocessor
./processor/sumologicprocessor
./processor/tailsamplingprocessor
./processor/tailsamplingprocessor/internal/sampling
./processor/transformprocessor
./processor/transformprocessor/internal/logs
./processor/transformprocessor/internal/metrics
./processor/transformprocessor/internal/traces
./receiver/activedirectorydsreceiver
./receiver/activedirectorydsreceiver/internal/metadata
./receiver/aerospikereceiver
./receiver/aerospikereceiver/internal/metadata
./receiver/apachereceiver
./receiver/apachereceiver/internal/metadata
./receiver/apachesparkreceiver
./receiver/apachesparkreceiver/internal/metadata
./receiver/awscloudwatchmetricsreceiver
./receiver/awscloudwatchreceiver
./receiver/awscontainerinsightreceiver
./receiver/awscontainerinsightreceiver/internal/cadvisor
./receiver/awscontainerinsightreceiver/internal/ecsInfo
./receiver/awscontainerinsightreceiver/internal/host
./receiver/awscontainerinsightreceiver/internal/k8sapiserver
./receiver/awscontainerinsightreceiver/internal/stores
./receiver/awsecscontainermetricsreceiver
./receiver/awsfirehosereceiver
./receiver/awsxrayreceiver
./receiver/awsxrayreceiver/internal/udppoller
./receiver/azureblobreceiver
./receiver/azureeventhubreceiver
./receiver/azuremonitorreceiver
./receiver/azuremonitorreceiver/internal/metadata
./receiver/bigipreceiver
./receiver/bigipreceiver/internal/metadata
./receiver/carbonreceiver
./receiver/chronyreceiver
./receiver/chronyreceiver/internal/metadata
./receiver/cloudflarereceiver
./receiver/cloudfoundryreceiver
./receiver/collectdreceiver
./receiver/couchdbreceiver
./receiver/couchdbreceiver/internal/metadata
./receiver/datadogreceiver
./receiver/dockerstatsreceiver
./receiver/dockerstatsreceiver/internal/metadata
./receiver/elasticsearchreceiver
./receiver/elasticsearchreceiver/internal/metadata
./receiver/expvarreceiver
./receiver/expvarreceiver/internal/metadata
./receiver/filelogreceiver
./receiver/filereceiver
./receiver/filestatsreceiver
./receiver/filestatsreceiver/internal/metadata
./receiver/flinkmetricsreceiver
./receiver/flinkmetricsreceiver/internal/metadata
./receiver/fluentforwardreceiver
./receiver/fluentforwardreceiver/observ
./receiver/gitproviderreceiver
./receiver/gitproviderreceiver/internal/metadata
./receiver/gitproviderreceiver/internal/scraper/githubscraper
./receiver/googlecloudpubsubreceiver
./receiver/googlecloudpubsubreceiver/internal
./receiver/googlecloudspannerreceiver
./receiver/googlecloudspannerreceiver/internal/datasource
./receiver/googlecloudspannerreceiver/internal/filter
./receiver/googlecloudspannerreceiver/internal/filterfactory
./receiver/googlecloudspannerreceiver/internal/metadata
./receiver/googlecloudspannerreceiver/internal/metadataconfig
./receiver/googlecloudspannerreceiver/internal/metadataparser
./receiver/googlecloudspannerreceiver/internal/statsreader
./receiver/haproxyreceiver
./receiver/haproxyreceiver/internal/metadata
./receiver/hostmetricsreceiver
./receiver/hostmetricsreceiver/internal/scraper/cpuscraper
./receiver/hostmetricsreceiver/internal/scraper/cpuscraper/internal/metadata
./receiver/hostmetricsreceiver/internal/scraper/diskscraper
./receiver/hostmetricsreceiver/internal/scraper/diskscraper/internal/metadata
./receiver/hostmetricsreceiver/internal/scraper/filesystemscraper
./receiver/hostmetricsreceiver/internal/scraper/filesystemscraper/internal/metadata
./receiver/hostmetricsreceiver/internal/scraper/loadscraper
./receiver/hostmetricsreceiver/internal/scraper/loadscraper/internal/metadata
./receiver/hostmetricsreceiver/internal/scraper/memoryscraper
./receiver/hostmetricsreceiver/internal/scraper/memoryscraper/internal/metadata
./receiver/hostmetricsreceiver/internal/scraper/networkscraper
./receiver/hostmetricsreceiver/internal/scraper/networkscraper/internal/metadata
./receiver/hostmetricsreceiver/internal/scraper/pagingscraper
./receiver/hostmetricsreceiver/internal/scraper/pagingscraper/internal/metadata
./receiver/hostmetricsreceiver/internal/scraper/processesscraper
./receiver/hostmetricsreceiver/internal/scraper/processesscraper/internal/metadata
./receiver/hostmetricsreceiver/internal/scraper/processscraper
./receiver/hostmetricsreceiver/internal/scraper/processscraper/internal/metadata
./receiver/httpcheckreceiver
./receiver/httpcheckreceiver/internal/metadata
./receiver/iisreceiver
./receiver/iisreceiver/internal/metadata
./receiver/influxdbreceiver
./receiver/jaegerreceiver
./receiver/jmxreceiver
./receiver/jmxreceiver/internal/subprocess
./receiver/journaldreceiver
./receiver/k8sclusterreceiver
./receiver/k8sclusterreceiver/internal/clusterresourcequota
./receiver/k8sclusterreceiver/internal/collection
./receiver/k8sclusterreceiver/internal/cronjob
./receiver/k8sclusterreceiver/internal/demonset
./receiver/k8sclusterreceiver/internal/deployment
./receiver/k8sclusterreceiver/internal/hpa
./receiver/k8sclusterreceiver/internal/jobs
./receiver/k8sclusterreceiver/internal/metadata
./receiver/k8sclusterreceiver/internal/namespace
./receiver/k8sclusterreceiver/internal/node
./receiver/k8sclusterreceiver/internal/pod
./receiver/k8sclusterreceiver/internal/replicaset
./receiver/k8sclusterreceiver/internal/replicationcontroller
./receiver/k8sclusterreceiver/internal/resourcequota
./receiver/k8sclusterreceiver/internal/statefulset
./receiver/k8seventsreceiver
./receiver/k8sobjectsreceiver
./receiver/kafkametricsreceiver
./receiver/kafkametricsreceiver/internal/metadata
./receiver/kafkareceiver
./receiver/kubeletstatsreceiver
./receiver/kubeletstatsreceiver/internal/kubelet
./receiver/kubeletstatsreceiver/internal/metadata
./receiver/lokireceiver
./receiver/memcachedreceiver
./receiver/memcachedreceiver/internal/metadata
./receiver/mongodbatlasreceiver
./receiver/mongodbatlasreceiver/internal/metadata
./receiver/mongodbreceiver
./receiver/mongodbreceiver/internal/metadata
./receiver/mysqlreceiver
./receiver/mysqlreceiver/internal/metadata
./receiver/namedpipereceiver
./receiver/nginxreceiver
./receiver/nginxreceiver/internal/metadata
./receiver/nsxtreceiver
./receiver/nsxtreceiver/internal/metadata
./receiver/opencensusreceiver
./receiver/opencensusreceiver/internal/ocmetrics
./receiver/opencensusreceiver/internal/octrace
./receiver/oracledbreceiver
./receiver/oracledbreceiver/internal/metadata
./receiver/osqueryreceiver
./receiver/otlpjsonfilereceiver
./receiver/podmanreceiver
./receiver/postgresqlreceiver
./receiver/postgresqlreceiver/internal/metadata
./receiver/prometheusreceiver
./receiver/prometheusreceiver/internal
./receiver/pulsarreceiver
./receiver/purefareceiver
./receiver/purefareceiver/internal
./receiver/purefbreceiver
./receiver/purefbreceiver/internal
./receiver/rabbitmqreceiver
./receiver/rabbitmqreceiver/internal/metadata
./receiver/receivercreator
./receiver/redisreceiver
./receiver/redisreceiver/internal/metadata
./receiver/riakreceiver
./receiver/riakreceiver/internal/metadata
./receiver/saphanareceiver
./receiver/saphanareceiver/internal/metadata
./receiver/sapmreceiver
./receiver/signalfxreceiver
./receiver/simpleprometheusreceiver
./receiver/skywalkingreceiver
./receiver/snmpreceiver
./receiver/snowflakereceiver
./receiver/snowflakereceiver/internal/metadata
./receiver/solacereceiver
./receiver/splunkenterprisereceiver
./receiver/splunkenterprisereceiver/internal/metadata
./receiver/splunkhecreceiver
./receiver/sqlqueryreceiver
./receiver/sqlserverreceiver
./receiver/sqlserverreceiver/internal/metadata
./receiver/sshcheckreceiver
./receiver/sshcheckreceiver/internal/configssh
./receiver/sshcheckreceiver/internal/metadata
./receiver/statsdreceiver
./receiver/syslogreceiver
./receiver/tcplogreceiver
./receiver/udplogreceiver
./receiver/vcenterreceiver
./receiver/vcenterreceiver/internal/metadata
./receiver/wavefrontreceiver
./receiver/webhookeventreceiver
./receiver/windowseventlogreceiver
./receiver/windowsperfcountersreceiver
./receiver/zipkinreceiver
./receiver/zookeeperreceiver
./receiver/zookeeperreceiver/internal/metadata
./testbed/correctnesstests/metrics
./testbed/correctnesstests/traces
./testbed/stabilitytests
./testbed/testbed
./testbed/tests

@crobert-1
Copy link
Member Author

crobert-1 commented Jan 12, 2024

After ignoring opencensus-go issues, here's the remaining package list that needs to be enabled:

dmitryax pushed a commit that referenced this issue Jan 17, 2024
**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
This PR contains 3 main changes:
1. Make a copy of the same file into every package whose `goleak` check
is currently passing. The only change for the `package_test.go` file in
each package is the package name itself.
2. Rename `processor/tailsamplingprocessor/main_test.go` to
`package_test.go` for uniformity. `package_test.go` is the name we chose
for core (see discussion
[here](open-telemetry/opentelemetry-collector#9173 (comment))).
3. Run `make gotidy` to add `goleak` dependency.

I included the script used to make these changes [in the
issue](#30438 (comment)).

**Link to tracking Issue:** <Issue number if applicable>
#30438
@crobert-1 crobert-1 removed the needs triage New item requiring triage label Jan 17, 2024
mfyuce pushed a commit to mfyuce/opentelemetry-collector-contrib that referenced this issue Jan 18, 2024
**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
This PR contains 3 main changes:
1. Make a copy of the same file into every package whose `goleak` check
is currently passing. The only change for the `package_test.go` file in
each package is the package name itself.
2. Rename `processor/tailsamplingprocessor/main_test.go` to
`package_test.go` for uniformity. `package_test.go` is the name we chose
for core (see discussion
[here](open-telemetry/opentelemetry-collector#9173 (comment))).
3. Run `make gotidy` to add `goleak` dependency.

I included the script used to make these changes [in the
issue](open-telemetry#30438 (comment)).

**Link to tracking Issue:** <Issue number if applicable>
open-telemetry#30438
jpkrohling pushed a commit that referenced this issue Jan 25, 2024
**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
Enables goleak check on tests in the `alertmanager` exporter to ensure
it's not leaking goroutines. This is a test only change.

**Link to tracking Issue:** <Issue number if applicable>
#30438

**Testing:** <Describe what testing was performed and which tests were
added.>
All tests are passing, goleak check is passing.
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
Enable `goleak` check for the NGINX receiver to help ensure no
goroutines are being leaked. This is a test only change, a couple test
servers were missing `Close` calls.

**Link to tracking Issue:** open-telemetry#30438
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
Enable `goleak` checking on the Podman receiver to help ensure no
goroutines are being leaked. This is a test only change.

**Link to tracking Issue:** open-telemetry#30438
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
Enable `goleak` check for the PureStorage Flash Array receiver to help
ensure no goroutines are being leaked. This is a test only change. The
`TestStart` test was missing a shutdown call, and once the shutdown call
was added, it was a duplicate test to `TestShutdown`. I consolidated
these two tests into one, called `TestStartAndShutdown`.

**Link to tracking Issue:** open-telemetry#30438
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
This change enables `goleak` checks on the Pure Storage FlashBlade
receiver to help ensure no goroutines are being leaked. This is a test
only change as a test was missing a shutdown call.

This looks like I deleted a test, but the two tests were identical,
other than a missing shutdown call. Once the missing call was added they
were identical, so I decided to delete one. I also consolidated err
checking to remove the `err` variable and directly check the result of
the `Start` and `Shutdown` methods.

**Link to tracking Issue:** open-telemetry#30438
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
Enable `goleak` checks for the NSX-T receiver to help ensure no
goroutines are being leaked. This is a test only change, some tests were
missing close calls to servers.

**Link to tracking Issue:** open-telemetry#30438
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
Enable `goleak` testing on the Pulsar receiver to help ensure no
goroutines are being leaked.

**Link to tracking Issue:** open-telemetry#30438
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
Enable `goleak` check for the SAP HANA receiver to help ensure no
goroutines are being leaked.

**Link to tracking Issue:** open-telemetry#30438
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
The receiver was starting a goroutine that would run without being
stopped during shutdown. This changes the goroutine to be stopped during
shutdown.

`goleak` is also added as a part of this change.

**Link to tracking Issue:** <Issue number if applicable>
open-telemetry#30438

**Testing:** <Describe what testing was performed and which tests were
added.>
All existing tests are passing, as well as added `goleak` check.
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
…en-telemetry#32307)

This is a test only change that enables `goleak` checks on some of the
internal packages of the Google Cloud Spanner receiver to help ensure no
goroutines are leaking. Some tests were missing shutdown calls so those
have been added.

**Link to tracking Issue:** open-telemetry#30438

All existing tests are passing, as well as added `goleak` checks.
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
…eck (open-telemetry#32311)

Enable `goleak` checks inside the `internal` package of the Google Cloud
PubSub receiver to help ensure no goroutines are leaking. This is a test
only change, some closes/cancels were missing. Also, we need to pass a
context to the grpc dial functionality, so switch from`Dial` ->
`DialContext`. `Dial` is a wrapper for `DialContext` passing in
`context.Background()`.

**Link to tracking Issue:** open-telemetry#30438 

Existing tests are passing, as well as added `goleak` check.
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
**Description:** 
This fixes a memory leak happening in the Fluent Forward receiver.
`time.Sleep` was being called for a duration of 10 seconds, with no way
to interrupt during shutdown. This updates the functionality to use a
timer that can be stopped in the case of the context being cancelled.

This also enables `goleak` checks on the Fluent Forward receiver to help
ensure no goroutines are being leaked, and adds a missing `Shutdown`
call.

**Link to tracking Issue:** open-telemetry#30438

**Testing:** All existing tests are passing as well as added `goleak` checks.
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
…2364)

**Description:** 
This enables `goleak` checks for the Azure Event Hub receiver to help
ensure no goroutines are being leaked. This is a test only change, some
goroutines were being detected as leaks simply because of the
context.Background lifecycle. Using a cancel shows everything gets
shutdown properly.

**Link to tracking Issue:** open-telemetry#30438 

**Testing:** 
All existing tests are passing, as well as added `goleak` check.
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
…craper (open-telemetry#32362)

**Description:** 
Enable `goleak` check in the `internal/scraper/githubscraper` package of
the Git Provider receiver to help ensure no goroutines are being leaked.
This is a test only change, a `Close` call was missing on a server in a
test.

**Link to tracking Issue:** open-telemetry#30438 

**Testing:**
All existing tests are passing, as well as added `goleak` check.
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
Add `goleak` check to the namedpipe receiver to help ensure no
goroutines are being leaked.

**Link to tracking Issue:** <Issue number if applicable>
open-telemetry#30438

**Testing:** <Describe what testing was performed and which tests were
added.>
None yet, I'm running on macOS and this is a Linux-only receiver.
Relying on GitHub CI/CD to show results. I'll convert this to ready to
review if it passes.
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
…32401)

**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
As explained
[here](open-telemetry#30438 (comment)),
components need to cancel all their work and background tasks before
returning from `Shutdown`. My original [change for this
component](open-telemetry#32364)
to add `goleak` testing worked around the proper behavior. This PR fully
addresses the `Shutdown` functionality to ensure the component behaves
the way the spec requires.

**Link to tracking Issue:** <Issue number if applicable>
open-telemetry#30438

**Testing:** <Describe what testing was performed and which tests were
added.>
Tests are passing.
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
Enable `goleak` checks in the `internal/udppoller` package of the AWS
X-Ray receiver to help ensure no goroutines are being leaked. This is a
test only change, simply adding a few missing `Close` calls.

**Link to tracking Issue:** open-telemetry#30438

All existing tests as well as added `goleak` checks are passing.
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
…etry#32462)

**Description:** 
Enable `goleak` checks to help ensure no goroutines are being leaked.
This is a test only change.

**Link to tracking Issue:** open-telemetry#30438

**Testing:** 
All existing tests are passing, as well as added `goleak` check.
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
This enables `goleak` on the Apache receiver to help ensure no
goroutines are leaking. This is a test only change, a test server wasn't
properly being shutdown in a test.

**Link to tracking Issue:** <Issue number if applicable>
open-telemetry#30438

**Testing:** <Describe what testing was performed and which tests were
added.>
All existing tests are passing, as well as added `goleak` checks.
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
…etry#32574)

**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
From [`client.Do` documentation](https://pkg.go.dev/net/http#Client.Do),
a client's response can safely be ignored when an error is returned, but
must be handled in all other cases, even when a response code is not
2XX. This fixes the internal AKS detection to properly close the
response body in the case of a non-200 status returned.

This also enables `goleak` on the `internal/metadata/azure` package
which helps ensure no goroutines are being leaked. `goleak` is what
detected this bug.

**Link to tracking Issue:** <Issue number if applicable>
open-telemetry#30438

**Testing:** <Describe what testing was performed and which tests were
added.>
All existing tests are passing as well as added `goleak` check.
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
Enable `goleak` check on the Aerospike receiver to help ensure no
goroutines are being leaked.

**Link to tracking Issue:** <Issue number if applicable>
open-telemetry#30438
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
The remotetap processor holds a map of channels for writing telemetry
data to WebSockets when a client connects. The write process works by
blocking on a given channel waiting for telemetry data coming through
the processor's pipeline, then writing as soon as it comes in. This
however can result in a leaked goroutine that blocks forever if data is
not received, which is always the case when shutting down.

This fixes the bug by closing and deleting all channels once all client
connections have been shutdown gracefully. This fixes the blocking
behavior during shutdown.

This change also enables `goleak` to help ensure no goroutines are being
leaked.

**Link to tracking Issue:** open-telemetry#30438

---------

Co-authored-by: Alex Boten <223565+codeboten@users.noreply.github.com>
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
…#32044)

**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
Documentation shows the existing usage of [`time.Tick` will leak a
goroutine on shutdown](https://pkg.go.dev/time#Tick). This updates the
`internal/common/ttlmap` tick functionality to use a ticker with a
context that has a cancel function. This allows the ticker to be
properly shut down.

I don't believe this requires a changelog because no user-facing
components were updated to actually call the shutdown function. It makes
more sense to me to add those after this gets merged to keep this PR
more concise.

This also adds `goleak` to the package to help ensure goroutines aren't
being leaked.

**Link to tracking Issue:** <Issue number if applicable>
Related to open-telemetry#30438

**Testing:** <Describe what testing was performed and which tests were
added.>
Existing tests are still passing, goleak check was failing before
change, succeeds after.

---------

Co-authored-by: Evan Bradley <11745660+evan-bradley@users.noreply.github.com>
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
…2573)

Enable `goleak` checks on the `groupbytrace` processor to help ensure no
goroutines are being leaked. I filed
open-telemetry#32572
to address an existing leak that needs more discussion.

**Link to tracking Issue:** open-telemetry#32572
open-telemetry#30438

---------

Co-authored-by: Alex Boten <223565+codeboten@users.noreply.github.com>
rimitchell pushed a commit to rimitchell/opentelemetry-collector-contrib that referenced this issue May 8, 2024
…pen-telemetry#32361)

**Description:** <Describe what has changed.>
<!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
Ex. Adding a feature - Explain what this achieves.-->
This PR contains the following changes:
1. Add `Close` call to the receiver's GRPC client. Without this,
goroutines were being leaked on shutdown.
2. Change `grpc.Dial` -> `grpc.NewClient`. They offer the same
functionality, but `Dial` is being deprecated in favor of `NewClient`.
3. Enable `goleak` checks on this receiver to help ensure no goroutines
are being leaked.
4. Change a couple `Assert.Nil` calls to `Assert.NoError`. The output of
`NoError` includes the error message if hit, `Nil` simply includes the
object's address, i.e. `&status.Error{s:(*status.Status)(0xc00007e158)}`

**Link to tracking Issue:** <Issue number if applicable>
open-telemetry#30438

**Testing:** <Describe what testing was performed and which tests were
added.>
All existing tests are passing, as well as added goleak check.
codeboten pushed a commit that referenced this issue May 21, 2024
This is a test only change, adding `goleak` to help ensure no goroutines
are being leaked. This passed in local testing without any changes.

#30438

`goleak` is passing
jpkrohling pushed a commit to t00mas/opentelemetry-collector-contrib that referenced this issue May 21, 2024
This is a test only change, adding `goleak` to help ensure no goroutines
are being leaked. This passed in local testing without any changes.

open-telemetry#30438

`goleak` is passing
codeboten pushed a commit that referenced this issue May 22, 2024
This originally was failing in CI/CD, but has passed 10+ times in a row,
I think it's safe to merge.

**Link to tracking Issue:**

#30438
sh0rez added a commit to sh0rez/opentelemetry-collector-contrib that referenced this issue May 27, 2024
Squashed commit of the following:

commit 0bd0379af3766b17b6bb740677bae3a3bee5e8cb
Author: j-kap-t <116100821+j-kap-t@users.noreply.github.com>
Date:   Wed Apr 10 08:27:28 2024 -0600

    [exporter/elasticsearch] handle ecs mode mapping (#31553)

    Description:

    Initial pass in implementing the ecs mapping mode that is documented but
    not implemented. This only covers a small subset of attribute mappings
    from otel > ecs, but the core record fields should be properly mapped.

    Link to tracking Issue:

    Testing:
    Added test for ecs mapping mode.

    Documentation:
    Updated the documentation to reflect the default behavior is the current
    behavior with no mapping applied.

    Reopening #30454

    ---------

    Co-authored-by: Andrey Kaipov <andrey.kaipov@target.com>
    Co-authored-by: Andrzej Stencel <astencel@sumologic.com>

commit 655bfa7ddee29e06ce832dff8ce43eb6b6191ee6
Author: sh0rez <me@shorez.de>
Date:   Wed Apr 10 16:14:19 2024 +0200

    [processor/deltatocumulative]: observe accumulation metrics (#31363)

    **Description:** <Describe what has changed.>
    <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
    Ex. Adding a feature - Explain what this achieves.-->

    Uses the otel meter to observe some key metrics about the accumulation:

    | Name | Description |

    |------------------------------------------|---------------------------------------------------------------------------------------|
    | `streams_count` | Number of streams currently tracked by the
    aggregation state |
    | `datapoints_processed` | Total number of datapoints processed, whether
    successful or not |
    | `datapoints_dropped` | Faulty datapoints that were dropped due to the
    reason given in the `reason` attribute |
    | `seconds_lost` | Total length of all gaps in the streams, which occur
    e.g. due to lost in transit |

    **Link to tracking Issue:**

    https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/30705

    **Testing:** None

    **Documentation:** Readme updated

commit 13b2b03d12c06ad7a3c754d07c78f0735bd85d03
Author: Antoine Toulme <antoine@lunar-ocean.com>
Date:   Wed Apr 10 05:58:33 2024 -0700

    [extension/awsproxy] add support for shutdown test (#31756)

    **Description:**
    Change the lifecycle of the extension so that the creation of the AWS
    client happens in the Start method, which helps with supporting
    component lifecycle.

    **Link to tracking Issue:**
    Relates to #27849

commit 77cf7f380322b723c2e1f3ec0d391a14feed09f3
Author: XinRan Zhang <xinranzh@amazon.com>
Date:   Wed Apr 10 05:57:51 2024 -0700

    Change the way that X-Ray exporter annotation converter work (#31732)

    Description:
    In the past, X-Ray doesn’t support “.”. So we have a translator in x-ray
    export to translates it to “_” before sending traces to X-Ray Service.

    To match otel naming style, x-ray service team decide to change their
    service to support both "." type and "" type of naming. In this case the
    translator that translate "." to "" is no-longer needed. This PR change
    the way this translator work

    X-Ray PMs agree on rolling out this change by using feature-gate

    Testing:
    Unit test

commit 867d6700c31446172e6998e602c55fbf7351831f
Author: Dinesh Gurumurthy <dinesh.gurumurthy@datadoghq.com>
Date:   Wed Apr 10 06:55:23 2024 -0400

    Allow customers to set custom resource attributes as container Tags (#32224)

    Currently users of DDconnector can only set fixed set of resource
    attributes as container Tags , list is defined
    [here](https://github.com/DataDog/opentelemetry-mapping-go/blob/ba4072f84888749a00f5748cca9f2a7fc2e42fc9/pkg/otlp/attributes/attributes.go#L41)
    . This PR enables the customers to choose any resource attribute to be
    set as container Tag on the APM Trace metrics payload.

    ---------

    Co-authored-by: Pablo Baeyens <pablo.baeyens@datadoghq.com>

commit 2a8dfd31517b89d2db910b2218f6fdb7bbe4a272
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Wed Apr 10 11:39:25 2024 +0200

    Update module google.golang.org/grpc to v1.63.2 (#32274)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    | [google.golang.org/grpc](https://togithub.com/grpc/grpc-go) |
    `v1.62.1` -> `v1.63.2` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgrpc/v1.63.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgrpc/v1.63.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgrpc/v1.62.1/v1.63.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgrpc/v1.62.1/v1.63.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>grpc/grpc-go (google.golang.org/grpc)</summary>

    ### [`v1.63.2`](https://togithub.com/grpc/grpc-go/releases/tag/v1.63.2):
    Release 1.63.2

    [Compare
    Source](https://togithub.com/grpc/grpc-go/compare/v1.63.1...v1.63.2)

    ### Bugs

    -   Fix the user agent string

    ### [`v1.63.1`](https://togithub.com/grpc/grpc-go/releases/tag/v1.63.1):
    Release 1.63.1

    [Compare
    Source](https://togithub.com/grpc/grpc-go/compare/v1.63.0...v1.63.1)

    -   grpc: un-deprecate Dial and DialContext and cherry-pick

    ### [`v1.63.0`](https://togithub.com/grpc/grpc-go/releases/tag/v1.63.0):
    Release 1.63.0

    [Compare
    Source](https://togithub.com/grpc/grpc-go/compare/v1.62.2...v1.63.0)

    ### Behavior Changes

    - grpc: Return canonical target string from `resolver.Address.String()`
    (experimental)
    ([#&#8203;6923](https://togithub.com/grpc/grpc-go/issues/6923))
    - client & server: when using write buffer pooling, use input value for
    buffer size instead of size\*2
    ([#&#8203;6983](https://togithub.com/grpc/grpc-go/issues/6983))
    - Special Thanks:
    [@&#8203;raghav-stripe](https://togithub.com/raghav-stripe)

    ### New Features

    - grpc: add `ClientConn.CanonicalTarget()` to return the canonical
    target string.
    ([#&#8203;7006](https://togithub.com/grpc/grpc-go/issues/7006))
    - xds: implement LRS named metrics support ([gRFC
    A64](https://togithub.com/grpc/proposal/blob/master/A64-lrs-custom-metrics.md))
    ([#&#8203;7027](https://togithub.com/grpc/grpc-go/issues/7027))
    - Special Thanks:
    [@&#8203;danielzhaotongliu](https://togithub.com/danielzhaotongliu)
    - grpc: introduce `grpc.NewClient` to allow users to create new clients
    in idle mode and with "dns" as the default resolver
    ([#&#8203;7010](https://togithub.com/grpc/grpc-go/issues/7010))
    - Special Thanks:
    [@&#8203;bruuuuuuuce](https://togithub.com/bruuuuuuuce)

    ### API Changes

    - grpc: stabilize experimental method `ClientConn.Target()`
    ([#&#8203;7006](https://togithub.com/grpc/grpc-go/issues/7006))

    ### Bug Fixes

    - xds: fix an issue that would cause the client to send an empty list of
    resources for LDS/CDS upon reconnecting with the management server
    ([#&#8203;7026](https://togithub.com/grpc/grpc-go/issues/7026))
    - server: Fix some errors returned by a server when using a
    `grpc.Server` as an `http.Handler` with the Go stdlib HTTP server
    ([#&#8203;6989](https://togithub.com/grpc/grpc-go/issues/6989))
    - resolver/dns: add `SetResolvingTimeout` to allow configuring the DNS
    resolver's global timeout
    ([#&#8203;6917](https://togithub.com/grpc/grpc-go/issues/6917))
    - Special Thanks: [@&#8203;and1truong](https://togithub.com/and1truong)
    - Set the security level of Windows named pipes to NoSecurity
    ([#&#8203;6956](https://togithub.com/grpc/grpc-go/issues/6956))
        -   Special Thanks: [@&#8203;irsl](https://togithub.com/irsl)

    ### [`v1.62.2`](https://togithub.com/grpc/grpc-go/releases/tag/v1.62.2):
    Release 1.62.2

    [Compare
    Source](https://togithub.com/grpc/grpc-go/compare/v1.62.1...v1.62.2)

    ### Dependencies

    - Update http2 library to address vulnerability
    [CVE-2023-45288](https://www.kb.cert.org/vuls/id/421644)

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit 309021ea3b4dd5d5f58225d98b7ad372885fb249
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Wed Apr 10 11:38:53 2024 +0200

    Update module github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common to v1.0.896 (#32290)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    |
    [github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common](https://togithub.com/tencentcloud/tencentcloud-sdk-go)
    | `v1.0.891` -> `v1.0.896` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.0.896?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.0.896?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.0.891/v1.0.896?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ftencentcloud%2ftencentcloud-sdk-go%2ftencentcloud%2fcommon/v1.0.891/v1.0.896?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>tencentcloud/tencentcloud-sdk-go
    (github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common)</summary>

    ###
    [`v1.0.896`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10896)

    [Compare
    Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.895...v1.0.896)

    #### 云联络中心(ccc) 版本:2020-02-10

    ##### 第 65 次发布

    发布时间:2024-04-10 01:09:30

    本次发布包含了以下内容:

    改善已有的文档。

    修改接口:

    -   [UploadIvrAudio](https://cloud.tencent.com/document/api/679/104894)

        -   新增出参:SuccessFileList

    #### 数据传输服务(dts) 版本:2021-12-06

    ##### 第 28 次发布

    发布时间:2024-04-10 01:14:34

    本次发布包含了以下内容:

    改善已有的文档。

    修改接口:

    -   [ConfigureSyncJob](https://cloud.tencent.com/document/api/571/82107)

        -   新增入参:SrcConnectType

    修改数据结构:

    -
    [DBEndpointInfo](https://cloud.tencent.com/document/api/571/82108#DBEndpointInfo)

        -   新增成员:ConnectType

    #### 数据传输服务(dts) 版本:2018-03-30

    #### 云游戏(gs) 版本:2019-11-18

    ##### 第 21 次发布

    发布时间:2024-04-10 01:16:17

    本次发布包含了以下内容:

    改善已有的文档。

    新增接口:

    -
    [StartPublishStreamToCSS](https://cloud.tencent.com/document/api/1162/104965)

    #### 云数据库 SQL Server(sqlserver) 版本:2018-03-28

    ##### 第 60 次发布

    发布时间:2024-04-10 01:21:30

    本次发布包含了以下内容:

    改善已有的文档。

    修改接口:

    -
    [DescribeDBInstancesAttribute](https://cloud.tencent.com/document/api/238/90299)

        -   新增出参:OldVipList

    新增数据结构:

    -   [OldVip](https://cloud.tencent.com/document/api/238/19976#OldVip)

    #### TI-ONE 训练平台(tione) 版本:2021-11-11

    ##### 第 56 次发布

    发布时间:2024-04-10 01:24:24

    本次发布包含了以下内容:

    改善已有的文档。

    修改接口:

    -   [CreateBatchTask](https://cloud.tencent.com/document/api/851/80182)

        -   新增入参:StartCmdBase64

    - [CreateModelService](https://cloud.tencent.com/document/api/851/82291)

        -   新增入参:CommandBase64

    - [ModifyModelService](https://cloud.tencent.com/document/api/851/83228)

        -   新增入参:CommandBase64

    #### TI-ONE 训练平台(tione) 版本:2019-10-22

    #### 实时音视频(trtc) 版本:2019-07-22

    ##### 第 68 次发布

    发布时间:2024-04-10 01:25:26

    本次发布包含了以下内容:

    改善已有的文档。

    修改接口:

    -   [StartWebRecord](https://cloud.tencent.com/document/api/647/104541)

        -   新增入参:PublishCdnParams

    ###
    [`v1.0.895`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10895)

    [Compare
    Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.894...v1.0.895)

    #### 业务风险情报(bri) 版本:2019-03-28

    ##### 第 5 次发布

    发布时间:2024-04-09 01:08:44

    本次发布包含了以下内容:

    改善已有的文档。

    <font color="#dd0000">**预下线接口**:</font>

    -   DescribeBRI

    #### 云数据库 MongoDB(mongodb) 版本:2019-07-25

    ##### 第 38 次发布

    发布时间:2024-04-09 01:18:23

    本次发布包含了以下内容:

    改善已有的文档。

    新增接口:

    -
    [FlashBackDBInstance](https://cloud.tencent.com/document/api/240/104930)

    新增数据结构:

    -
    [FBKeyValue](https://cloud.tencent.com/document/api/240/38576#FBKeyValue)
    -
    [FlashbackCollection](https://cloud.tencent.com/document/api/240/38576#FlashbackCollection)
    -
    [FlashbackDatabase](https://cloud.tencent.com/document/api/240/38576#FlashbackDatabase)

    #### 云数据库 MongoDB(mongodb) 版本:2018-04-08

    #### SSL 证书(ssl) 版本:2019-12-05

    ##### 第 55 次发布

    发布时间:2024-04-09 01:21:02

    本次发布包含了以下内容:

    改善已有的文档。

    修改接口:

    -
    [DeployCertificateInstance](https://cloud.tencent.com/document/api/400/91667)

        -   新增入参:IsCache

    ###
    [`v1.0.894`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10894)

    [Compare
    Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.893...v1.0.894)

    #### 云联络中心(ccc) 版本:2020-02-10

    ##### 第 64 次发布

    发布时间:2024-04-08 01:09:16

    本次发布包含了以下内容:

    改善已有的文档。

    新增接口:

    -
    [DescribeIvrAudioList](https://cloud.tencent.com/document/api/679/104895)
    -   [UploadIvrAudio](https://cloud.tencent.com/document/api/679/104894)

    新增数据结构:

    -
    [AudioFileInfo](https://cloud.tencent.com/document/api/679/47715#AudioFileInfo)
    -
    [UploadAudioInfo](https://cloud.tencent.com/document/api/679/47715#UploadAudioInfo)
    -
    [UploadIvrAudioFailedInfo](https://cloud.tencent.com/document/api/679/47715#UploadIvrAudioFailedInfo)

    #### 云安全一体化平台(csip) 版本:2022-11-21

    ##### 第 34 次发布

    发布时间:2024-04-08 01:11:35

    本次发布包含了以下内容:

    改善已有的文档。

    新增接口:

    -
    [DescribeAssetViewVulRiskList](https://cloud.tencent.com/document/api/664/104896)

    新增数据结构:

    -
    [AssetViewVULRiskData](https://cloud.tencent.com/document/api/664/90825#AssetViewVULRiskData)

    #### 云直播CSS(live) 版本:2018-08-01

    ##### 第 124 次发布

    发布时间:2024-04-08 01:18:24

    本次发布包含了以下内容:

    改善已有的文档。

    修改数据结构:

    -
    [RecordParam](https://cloud.tencent.com/document/api/267/20474#RecordParam)

        -   新增成员:CosBucketName, CosBucketRegion, CosBucketPath

    #### 私有网络(vpc) 版本:2017-03-12

    ##### 第 187 次发布

    发布时间:2024-04-08 01:27:01

    本次发布包含了以下内容:

    改善已有的文档。

    修改数据结构:

    -   [Address](https://cloud.tencent.com/document/api/215/15824#Address)

        -   新增成员:BandwidthPackageId

    ###
    [`v1.0.893`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10893)

    [Compare
    Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.892...v1.0.893)

    #### 消息队列 RocketMQ 版(trocket) 版本:2023-03-08

    ##### 第 12 次发布

    发布时间:2024-04-04 01:25:24

    本次发布包含了以下内容:

    改善已有的文档。

    修改接口:

    -   [ModifyTopic](https://cloud.tencent.com/document/api/1493/97944)

        -   新增入参:MsgTTL

    ###
    [`v1.0.892`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10892)

    [Compare
    Source](https://togithub.com/tencentcloud/tencentcloud-sdk-go/compare/v1.0.891...v1.0.892)

    #### 域名注册(domain) 版本:2018-08-08

    ##### 第 33 次发布

    发布时间:2024-04-03 11:17:24

    本次发布包含了以下内容:

    改善已有的文档。

    新增接口:

    -   [DescribeTldList](https://cloud.tencent.com/document/api/242/104832)

    #### 腾讯电子签(基础版)(essbasic) 版本:2021-05-26

    ##### 第 163 次发布

    发布时间:2024-04-03 11:19:08

    本次发布包含了以下内容:

    改善已有的文档。

    修改数据结构:

    -
    [RegistrationOrganizationInfo](https://cloud.tencent.com/document/api/1420/61525#RegistrationOrganizationInfo)

        -   新增成员:PowerOfAttorneys

    #### 腾讯电子签(基础版)(essbasic) 版本:2020-12-22

    #### 云直播CSS(live) 版本:2018-08-01

    ##### 第 123 次发布

    发布时间:2024-04-03 11:22:46

    本次发布包含了以下内容:

    改善已有的文档。

    修改接口:

    -
    [CreateLiveRecordTemplate](https://cloud.tencent.com/document/api/267/32614)

        -   新增入参:CosStore

    #### 文字识别(ocr) 版本:2018-11-19

    ##### 第 133 次发布

    发布时间:2024-04-03 11:24:26

    本次发布包含了以下内容:

    改善已有的文档。

    修改数据结构:

    -
    [DocumentElement](https://cloud.tencent.com/document/api/866/33527#DocumentElement)

        -   新增成员:InsetImageName

    #### 腾讯健康组学平台(omics) 版本:2022-11-28

    ##### 第 14 次发布

    发布时间:2024-04-03 11:24:43

    本次发布包含了以下内容:

    改善已有的文档。

    修改接口:

    -   [RunApplication](https://cloud.tencent.com/document/api/1643/89094)

        -   新增入参:InputCosUri, AccessMode

        -   <font color="#dd0000">**修改入参**:</font>InputBase64

    #### 微瓴同业开放平台(weilingwith) 版本:2023-04-27

    ##### 第 8 次发布

    发布时间:2024-04-03 11:34:07

    本次发布包含了以下内容:

    改善已有的文档。

    新增接口:

    -
    [BatchDeleteDevice](https://cloud.tencent.com/document/api/1693/104841)
    -
    [DeleteDeviceGroup](https://cloud.tencent.com/document/api/1693/104840)
    -
    [DescribeDeviceGroupList](https://cloud.tencent.com/document/api/1693/104839)
    -
    [ModifyDeviceField](https://cloud.tencent.com/document/api/1693/104838)
    -
    [ModifyDeviceGroup](https://cloud.tencent.com/document/api/1693/104837)
    - [ModifyDeviceTag](https://cloud.tencent.com/document/api/1693/104836)
    - [SaveDeviceGroup](https://cloud.tencent.com/document/api/1693/104835)

    新增数据结构:

    -
    [DescribeDeviceGroupListRes](https://cloud.tencent.com/document/api/1693/97961#DescribeDeviceGroupListRes)
    -
    [DescribeGroupInfo](https://cloud.tencent.com/document/api/1693/97961#DescribeGroupInfo)
    -
    [ModifyDeviceFieldInfo](https://cloud.tencent.com/document/api/1693/97961#ModifyDeviceFieldInfo)
    -
    [ModifyDeviceGroupInfo](https://cloud.tencent.com/document/api/1693/97961#ModifyDeviceGroupInfo)
    -
    [ModifyDeviceTagInfo](https://cloud.tencent.com/document/api/1693/97961#ModifyDeviceTagInfo)
    -
    [SaveDeviceGroupRes](https://cloud.tencent.com/document/api/1693/97961#SaveDeviceGroupRes)

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit 45fb967a85a3187f188d311c727eafb5208e46a0
Author: Katarzyna Kujawa <73836361+kkujawa-sumo@users.noreply.github.com>
Date:   Wed Apr 10 11:36:17 2024 +0200

    [CI] update codecov action to v4 (#32260)

    **Description:** update codecov action to v4

    **Link to tracking Issue:**
    https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/32259

commit 36084a97e3426848106df854110698c5207faba3
Author: Curtis Robert <crobert@splunk.com>
Date:   Wed Apr 10 01:22:04 2024 -0700

    [receiver/jmx] Fix memory leak on shutdown (#32289)

    **Description:** <Describe what has changed.>
    <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
    Ex. Adding a feature - Explain what this achieves.-->
    The receiver was starting a goroutine that would run without being
    stopped during shutdown. This changes the goroutine to be stopped during
    shutdown.

    `goleak` is also added as a part of this change.

    **Link to tracking Issue:** <Issue number if applicable>
    #30438

    **Testing:** <Describe what testing was performed and which tests were
    added.>
    All existing tests are passing, as well as added `goleak` check.

commit d7528888c5821a02e9605429da372c9ae39b6646
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Wed Apr 10 10:19:34 2024 +0200

    Update module github.com/Azure/azure-sdk-for-go/sdk/azidentity to v1.5.2 (#32273)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    |
    [github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://togithub.com/Azure/azure-sdk-for-go)
    | `v1.5.1` -> `v1.5.2` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazidentity/v1.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazidentity/v1.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazidentity/v1.5.1/v1.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazidentity/v1.5.1/v1.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit 9124bc85cabfbc5bd20d3046b5d2248c69dffb2e
Author: Alex Boten <223565+codeboten@users.noreply.github.com>
Date:   Tue Apr 9 13:49:19 2024 -0700

    [chore] use pdata/testdata instead of coreinternal (#32265)

    This will allow us to remove duplicated code in the near future.

    ---------

    Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>

commit 6229c6ad1c49e9cc4b41a8aab8cb5a94a7b82ea5
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Apr 9 11:17:01 2024 -0700

    Update Wandalen/wretry.action action to v3.2.0 (#32244)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Type | Update | Change |
    |---|---|---|---|
    | [Wandalen/wretry.action](https://togithub.com/Wandalen/wretry.action)
    | action | minor | `v3.0.1` -> `v3.2.0` |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>Wandalen/wretry.action (Wandalen/wretry.action)</summary>

    ###
    [`v3.2.0`](https://togithub.com/Wandalen/wretry.action/compare/v3.1.0...v3.2.0)

    [Compare
    Source](https://togithub.com/Wandalen/wretry.action/compare/v3.1.0...v3.2.0)

    ###
    [`v3.1.0`](https://togithub.com/Wandalen/wretry.action/compare/v3.0.1...v3.1.0)

    [Compare
    Source](https://togithub.com/Wandalen/wretry.action/compare/v3.0.1...v3.1.0)

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

commit 4f31763c90ac807afd5e95500718bf97cbb17c14
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Apr 9 11:16:25 2024 -0700

    Update module golang.org/x/mod to v0.17.0 (#32257)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    | golang.org/x/mod | `v0.16.0` -> `v0.17.0` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fmod/v0.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fmod/v0.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fmod/v0.16.0/v0.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fmod/v0.16.0/v0.17.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit 81d411408ea19a990eedfc7e332906f05dd47c8f
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Apr 9 11:15:50 2024 -0700

    Update module golang.org/x/net to v0.24.0 (#32262)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    | golang.org/x/net | `v0.23.0` -> `v0.24.0` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/golang.org%2fx%2fnet/v0.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/golang.org%2fx%2fnet/v0.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/golang.org%2fx%2fnet/v0.23.0/v0.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/golang.org%2fx%2fnet/v0.23.0/v0.24.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit b007ca2b86a8eaa5ed02346c66900132dc940371
Author: Alex Boten <223565+codeboten@users.noreply.github.com>
Date:   Tue Apr 9 11:08:33 2024 -0700

    [chore] update core to latest (#32264)

    Signed-off-by: Alex Boten <223565+codeboten@users.noreply.github.com>

commit 0250e2ebb62e2f9183cefb0df3c3f4d416c49bd8
Author: Curtis Robert <crobert@splunk.com>
Date:   Tue Apr 9 10:45:32 2024 -0700

    [chore][processor/resourcedetection] Fix README's config example (#32270)

    The example config for enabling AKS's `k8s.cluster.name` metric was
    incorrect. This fixes it to be the correct format.

    Resolves https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/32258

commit decc66f276b9bb3ca7b775d59a93340503668641
Author: Dominik Rosiek <58699848+sumo-drosiek@users.noreply.github.com>
Date:   Tue Apr 9 16:07:37 2024 +0200

    [chore] [exporter/sumologic] sync internal package with Sumo Logic repository (#31480)

    **Description:**

    Those files can be added independently of their usage which should make
    other PRs smaller

    **Link to tracking Issue:** #31479

    **Testing:**

    Unit tests

    **Documentation:** N/A

    ---------

    Signed-off-by: Dominik Rosiek <drosiek@sumologic.com>

commit 13fca794d57a15e68b41b95ea8df64ff7564f04d
Author: George Krajcsovits <krajorama@users.noreply.github.com>
Date:   Tue Apr 9 14:59:30 2024 +0200

    [receiver/prometheusreceiver] implement append native histogram (#28663)

    **Description:**

    Implement native histogram append MVP.
    Very similar to appending a float sample.

    Limitations:
    - Only support integer counter histograms fully.
    - In case a histogram has both classic and native buckets, we only store
    one of them. Governed by scrape_classic_histograms scrape option. The
    reason is that in the OTEL model the metric family is identified by the
    normalized name (without _count, _sum, _bucket suffixes for the classic
    histograms), meaning that the classic and native histograms would map to
    the same metric family in OTEL model , but that cannot have both
    Histogram and ExponentialHistogram types at the same time.
    - Gauge histograms are dropped with warning as that temporality is
    unsupported, see
    https://github.com/open-telemetry/opentelemetry-specification/issues/2714
    - NoRecordedValue attribute might be unreliable. Prometheus scrape marks
    all series with float NaN values when stale, but transactions in
    prometheusreceiver are stateless, meaning that we have to use heuristics
    to figure out if we need to add a NoRecordedValue data point to an
    Exponential Histogram metric. (Need work in Prometheus.)

    Additionally:
    - Created timestamp supported.
    - Float counter histograms not fully tested and lose precision, but we
    don't expect instrumentation to expose these anyway.

    **Link to tracking Issue:**

    Fixes: #26555

    **Testing:**

    Added unit tests and e2e tests.

    **Documentation:**

    TBD: will have to call out protobuf negotiation while no text format.
    #27030

    ---------

    Signed-off-by: György Krajcsovits <gyorgy.krajcsovits@grafana.com>
    Co-authored-by: David Ashpole <dashpole@google.com>

commit 17fe4f8b40e674cded761c3ecd8cd0c7b8555e68
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Apr 9 14:52:30 2024 +0200

    Update module github.com/klauspost/compress to v1.17.8 (#32252)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    |
    [github.com/klauspost/compress](https://togithub.com/klauspost/compress)
    | `v1.17.7` -> `v1.17.8` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fklauspost%2fcompress/v1.17.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fklauspost%2fcompress/v1.17.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fklauspost%2fcompress/v1.17.7/v1.17.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fklauspost%2fcompress/v1.17.7/v1.17.8?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>klauspost/compress (github.com/klauspost/compress)</summary>

    ###
    [`v1.17.8`](https://togithub.com/klauspost/compress/releases/tag/v1.17.8)

    [Compare
    Source](https://togithub.com/klauspost/compress/compare/v1.17.7...v1.17.8)

    #### What's Changed

    - zstd: Reject blocks where reserved values are not 0 by
    [@&#8203;klauspost](https://togithub.com/klauspost) in
    [https://github.com/klauspost/compress/pull/885](https://togithub.com/klauspost/compress/pull/885)
    - zstd: Add RLE detection+encoding by
    [@&#8203;klauspost](https://togithub.com/klauspost) in
    [https://github.com/klauspost/compress/pull/938](https://togithub.com/klauspost/compress/pull/938)

    #### New Contributors

    - [@&#8203;ankon](https://togithub.com/ankon) made their first
    contribution in
    [https://github.com/klauspost/compress/pull/932](https://togithub.com/klauspost/compress/pull/932)
    - [@&#8203;kindhuge](https://togithub.com/kindhuge) made their first
    contribution in
    [https://github.com/klauspost/compress/pull/946](https://togithub.com/klauspost/compress/pull/946)

    **Full Changelog**:
    https://github.com/klauspost/compress/compare/v1.17.7...v1.17.8

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit fe59abb5412d54e93f03517601013561b074d104
Author: Roger Coll <rogercoll@protonmail.com>
Date:   Tue Apr 9 14:22:54 2024 +0200

    [podmanreceiver] Add metrics and resource metadata (#30232)

    **Description:** <Describe what has changed.>
    - Adds "metadata.yml" file to autogenerate metrics and resources.
    - [Update: not done in this PR] Fixes invalid network metrics: "rx ->
    input" and "tx -> output"

    **Link to tracking Issue:**
    https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/28640

    **Testing:** Previous tests preserved.

    **Documentation:** <Describe the documentation added.>

    ---------

    Co-authored-by: Mackenzie <63265430+mackjmr@users.noreply.github.com>

commit 4edca204adb4c05b0c7d395b6d0ae0704f7f9567
Author: Srikanth Chekuri <srikanth.chekuri92@gmail.com>
Date:   Tue Apr 9 17:51:35 2024 +0530

    [cmd/opampsupervisor] Handle OpAMP connection settings (#30237)

    **Link to tracking Issue:** <Issue number if applicable>

    Part of #21043; based on top of
    https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/29848
    to add test

    **Testing:** <Describe what testing was performed and which tests were
    added.>

    Added integration test

    ---------

    Co-authored-by: Evan Bradley <11745660+evan-bradley@users.noreply.github.com>

commit 9c17fd8432e2e3b049e31fe19944b2467397fe30
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Apr 9 13:39:15 2024 +0200

    Update module github.com/prometheus/common to v0.52.2 (#32250)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    | [github.com/prometheus/common](https://togithub.com/prometheus/common)
    | `v0.51.1` -> `v0.52.2` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fcommon/v0.52.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fcommon/v0.52.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fcommon/v0.51.1/v0.52.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fcommon/v0.51.1/v0.52.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>prometheus/common (github.com/prometheus/common)</summary>

    ###
    [`v0.52.2`](https://togithub.com/prometheus/common/releases/tag/v0.52.2)

    [Compare
    Source](https://togithub.com/prometheus/common/compare/v0.51.1...v0.52.2)

    #### What's Changed

    - Drop support for Go older than 1.18 by
    [@&#8203;SuperQ](https://togithub.com/SuperQ) in
    [https://github.com/prometheus/common/pull/612](https://togithub.com/prometheus/common/pull/612)
    - fix(protobuf): Correctly decode multi-messages streams by
    [@&#8203;srebhan](https://togithub.com/srebhan) in
    [https://github.com/prometheus/common/pull/616](https://togithub.com/prometheus/common/pull/616)
    - Bump github.com/aws/aws-sdk-go from 1.50.31 to 1.51.11 in /sigv4 by
    [@&#8203;dependabot](https://togithub.com/dependabot) in
    [https://github.com/prometheus/common/pull/615](https://togithub.com/prometheus/common/pull/615)

    #### New Contributors

    - [@&#8203;srebhan](https://togithub.com/srebhan) made their first
    contribution in
    [https://github.com/prometheus/common/pull/616](https://togithub.com/prometheus/common/pull/616)

    **Full Changelog**:
    https://github.com/prometheus/common/compare/v0.51.1...v0.52.2

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit a1381ef1da70d32101214dcc50f808d1e93cc3c1
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Apr 9 13:39:06 2024 +0200

    Update module github.com/SAP/go-hdb to v1.8.12 (#32234)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    | [github.com/SAP/go-hdb](https://togithub.com/SAP/go-hdb) | `v1.8.11`
    -> `v1.8.12` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fSAP%2fgo-hdb/v1.8.12?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fSAP%2fgo-hdb/v1.8.12?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fSAP%2fgo-hdb/v1.8.11/v1.8.12?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fSAP%2fgo-hdb/v1.8.11/v1.8.12?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>SAP/go-hdb (github.com/SAP/go-hdb)</summary>

    ###
    [`v1.8.12`](https://togithub.com/SAP/go-hdb/blob/HEAD/RELEASENOTES.md#v1812)

    [Compare
    Source](https://togithub.com/SAP/go-hdb/compare/v1.8.11...v1.8.12)

    -   updated dependencies

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit aacaaa432edbf4d704b575276af51d9d11e4c999
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Apr 9 12:36:11 2024 +0200

    Update module github.com/cespare/xxhash/v2 to v2.3.0 (#32245)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    | [github.com/cespare/xxhash/v2](https://togithub.com/cespare/xxhash) |
    `v2.2.0` -> `v2.3.0` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcespare%2fxxhash%2fv2/v2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcespare%2fxxhash%2fv2/v2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcespare%2fxxhash%2fv2/v2.2.0/v2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcespare%2fxxhash%2fv2/v2.2.0/v2.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>cespare/xxhash (github.com/cespare/xxhash/v2)</summary>

    ###
    [`v2.3.0`](https://togithub.com/cespare/xxhash/compare/v2.2.0...v2.3.0)

    [Compare
    Source](https://togithub.com/cespare/xxhash/compare/v2.2.0...v2.3.0)

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit 111393e6e71668285067172e5642e8ba61cd00c6
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Apr 9 12:18:59 2024 +0200

    Update All github.com/azure packages (#32229)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    |
    [github.com/Azure/azure-sdk-for-go/sdk/azcore](https://togithub.com/Azure/azure-sdk-for-go)
    | `v1.11.0` -> `v1.11.1` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazcore/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazcore/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazcore/v1.11.0/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fazcore/v1.11.0/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    |
    [github.com/Azure/azure-sdk-for-go/sdk/storage/azblob](https://togithub.com/Azure/azure-sdk-for-go)
    | `v1.3.1` -> `v1.3.2` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fstorage%2fazblob/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fstorage%2fazblob/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fstorage%2fazblob/v1.3.1/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fAzure%2fazure-sdk-for-go%2fsdk%2fstorage%2fazblob/v1.3.1/v1.3.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    👻 **Immortal**: This PR will be recreated if closed unmerged. Get
    [config help](https://togithub.com/renovatebot/renovate/discussions) if
    that's undesired.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit debbc9d76c15db2a495fc54c4cee7dd5afdc71c1
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Apr 9 12:18:14 2024 +0200

    Update module sigs.k8s.io/controller-runtime to v0.17.3 (#32243)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    |
    [sigs.k8s.io/controller-runtime](https://togithub.com/kubernetes-sigs/controller-runtime)
    | `v0.17.2` -> `v0.17.3` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/sigs.k8s.io%2fcontroller-runtime/v0.17.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/sigs.k8s.io%2fcontroller-runtime/v0.17.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/sigs.k8s.io%2fcontroller-runtime/v0.17.2/v0.17.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/sigs.k8s.io%2fcontroller-runtime/v0.17.2/v0.17.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>kubernetes-sigs/controller-runtime
    (sigs.k8s.io/controller-runtime)</summary>

    ###
    [`v0.17.3`](https://togithub.com/kubernetes-sigs/controller-runtime/releases/tag/v0.17.3)

    [Compare
    Source](https://togithub.com/kubernetes-sigs/controller-runtime/compare/v0.17.2...v0.17.3)

    ##### What's Changed

    - 🌱 Update to Kubernetes v1.29.2 by
    [@&#8203;sbueringer](https://togithub.com/sbueringer) in
    [https://github.com/kubernetes-sigs/controller-runtime/pull/2711](https://togithub.com/kubernetes-sigs/controller-runtime/pull/2711)
    - :bug: Cache: Keep selectors when byObject.Namespaces is defaulted by
    [@&#8203;k8s-infra-cherrypick-robot](https://togithub.com/k8s-infra-cherrypick-robot)
    in
    [https://github.com/kubernetes-sigs/controller-runtime/pull/2749](https://togithub.com/kubernetes-sigs/controller-runtime/pull/2749)
    - 🐛 Prevent leader election when shutting down a non-elected manager by
    [@&#8203;k8s-infra-cherrypick-robot](https://togithub.com/k8s-infra-cherrypick-robot)
    in
    [https://github.com/kubernetes-sigs/controller-runtime/pull/2752](https://togithub.com/kubernetes-sigs/controller-runtime/pull/2752)
    - :bug: Runnable group should check if stopped before enqueueing by
    [@&#8203;k8s-infra-cherrypick-robot](https://togithub.com/k8s-infra-cherrypick-robot)
    in
    [https://github.com/kubernetes-sigs/controller-runtime/pull/2761](https://togithub.com/kubernetes-sigs/controller-runtime/pull/2761)

    **Full Changelog**:
    https://github.com/kubernetes-sigs/controller-runtime/compare/v0.17.2...v0.17.3

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit ff2b9d6eae9250c7a87db675340a89129d3e91a3
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Apr 9 11:54:06 2024 +0200

    Update module github.com/sijms/go-ora/v2 to v2.8.11 (#32240)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    | [github.com/sijms/go-ora/v2](https://togithub.com/sijms/go-ora) |
    `v2.8.10` -> `v2.8.11` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fsijms%2fgo-ora%2fv2/v2.8.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fsijms%2fgo-ora%2fv2/v2.8.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fsijms%2fgo-ora%2fv2/v2.8.10/v2.8.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fsijms%2fgo-ora%2fv2/v2.8.10/v2.8.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>sijms/go-ora (github.com/sijms/go-ora/v2)</summary>

    ### [`v2.8.11`](https://togithub.com/sijms/go-ora/releases/tag/v2.8.11):
    : Fix regression in &#x60;encryption and data integrity

    [Compare
    Source](https://togithub.com/sijms/go-ora/compare/v2.8.10...v2.8.11)

    fix regression in encryption and data integrity when connection
    break/reset

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit b4cf660cd36c4cf9995025ff1a0642a6f104bb29
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue Apr 9 11:53:54 2024 +0200

    Update module github.com/prometheus/client_model to v0.6.1 (#32239)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    |
    [github.com/prometheus/client_model](https://togithub.com/prometheus/client_model)
    | `v0.6.0` -> `v0.6.1` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fprometheus%2fclient_model/v0.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fprometheus%2fclient_model/v0.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fprometheus%2fclient_model/v0.6.0/v0.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fprometheus%2fclient_model/v0.6.0/v0.6.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>prometheus/client_model
    (github.com/prometheus/client_model)</summary>

    ###
    [`v0.6.1`](https://togithub.com/prometheus/client_model/releases/tag/v0.6.1)

    [Compare
    Source](https://togithub.com/prometheus/client_model/compare/v0.6.0...v0.6.1)

    #### What's Changed

    - Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by
    [@&#8203;dependabot](https://togithub.com/dependabot) in
    [https://github.com/prometheus/client_model/pull/84](https://togithub.com/prometheus/client_model/pull/84)

    **Full Changelog**:
    https://github.com/prometheus/client_model/compare/v0.6.0...v0.6.1

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    …
sh0rez added a commit to sh0rez/opentelemetry-collector-contrib that referenced this issue May 27, 2024
commit 41d853ddd4be38c9f65634b911b1b623e5ec8012
Author: Curtis Robert <crobert@splunk.com>
Date:   Mon May 13 06:30:42 2024 -0700

    [chore][receiver/sqlserver] Document Windows-only metrics (#32944)

    **Description:** <Describe what has changed.>
    <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
    Ex. Adding a feature - Explain what this achieves.-->
    The referenced metrics are being gathered from Windows perf counters,
    thus they're currently only available on Windows. With the introduction
    of direct connection and other supported OSs, I think it would be good
    to be clear to users about metric availability.

commit 2502368da65e9eaf1d3228ec205f6ebe6c505564
Author: Curtis Robert <crobert@splunk.com>
Date:   Mon May 13 06:28:14 2024 -0700

    [chore][exporter/rabbitmq] Add missing code owner (#32984)

    **Description:** <Describe what has changed.>
    <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
    Ex. Adding a feature - Explain what this achieves.-->
    @atoulme [volunteered to be the
    sponsor](https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/28891#issuecomment-1981402878)
    of this component, so I believe he should be listed as a code owner.

    From
    [CONTRIBUTING.md](https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/CONTRIBUTING.md#adding-new-components):
    ```
    A sponsor is an approver who will be in charge of being the official reviewer of the code and become a code owner for the component.
    ```

    **Link to tracking Issue:** <Issue number if applicable>
    #28891

commit a133a8efefbe34dd45d8d4c8473ebbd75f4bdcc3
Author: Dominik Rosiek <58699848+sumo-drosiek@users.noreply.github.com>
Date:   Mon May 13 10:05:36 2024 +0200

    [exporter/sumologic] change logs behavior (#32939)

    **Description:**

      * set OTLP as default format
      * add support for OTLP format
      * do not support metadata attributes
      * do not support source headers

    **Link to tracking Issue:** #32315

    **Testing:**

    * unit tests

    **Documentation:**

    * inline comments
    * readme

    ---------

    Signed-off-by: Dominik Rosiek <drosiek@sumologic.com>

commit c5485bf4ddef9c0acce85bff1fed60f669aabf6a
Author: Joshua MacDonald <jmacd@users.noreply.github.com>
Date:   Mon May 13 00:47:46 2024 -0700

    OpenTelemetry Protocol with Apache Arrow Exporter component (#31996)

    **Description:**

    This is the same code as OTel-Arrow at
    https://github.com/open-telemetry/otel-arrow/releases/tag/v0.23.0 (plus
    [backported lint and test
    fixes](https://github.com/open-telemetry/otel-arrow/commit/0910113d46454c80881db840e21f25485dce2499)).
    Only import statements change here, to match the host repository.

    **Link to tracking Issue:** #26491

    **Testing:** Test coverage is approximately 90%.

    **Documentation:** I double-checked and the existing README had only a
    few updates needed.

commit 82a828b798cd9074b9a3aec95c2115e825042799
Author: Stefan Kurek <stefan.kurek@observiq.com>
Date:   Fri May 10 14:30:09 2024 -0400

    [chore] vcenterreceiver Adds Accidentally Removed Unit Test Configs/Results (#32987)

    **Description:** <Describe what has changed.>
    In this
    [PR](https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/32913),
    I accidentally removed all the enabled configs from the 2nd set of unit
    tests. This was incorrect as there are still 4 of them that are
    currently disabled by default. This is rectifying that by adding those
    back in.

    **Link to tracking Issue:** <Issue number if applicable>

    **Testing:** <Describe what testing was performed and which tests were
    added.>
    This change is for the unit tests only

    **Documentation:** <Describe the documentation added.>
    NA

commit cf2afd0db91d01e001804efedbb789e6015a4a8b
Author: Juraj Michálek <juraj.michalek132@gmail.com>
Date:   Fri May 10 16:46:41 2024 +0200

    chore: remote write exporter retry on 429 (#31924)

    **Description:** <Describe what has changed.>

    This PR adds an option to retry the remote write requests when the
    receiving backend responds with 429 http status code,

    <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
    Ex. Adding a feature - Explain what this achieves.-->

    **Link to tracking Issue:** #31032

    **Testing:** <Describe what testing was performed and which tests were
    added.>

    Added tests covering the case.

    **Documentation:** <Describe the documentation added.>

    Not sure what's the pattern for documenting feature flags.

    ---------

    Co-authored-by: Anthony Mirabella <a9@aneurysm9.com>
    Co-authored-by: Pablo Baeyens <pbaeyens31+github@gmail.com>
    Co-authored-by: David Ashpole <dashpole@google.com>

commit bc2ff482f0669c00a17f8ea2004d8d6d164abd8b
Author: Evan Bradley <11745660+evan-bradley@users.noreply.github.com>
Date:   Fri May 10 09:55:02 2024 -0400

    [chore] Add contrib confmap providers to otelcontribcol (#32916)

    **Description:**

    Contrib hosts two confmap providers which aren't in the local binary. We
    should add them so we can test them with a live system.

    cc @Aneurysm9 @driverpt @atoulme

    ---------

    Co-authored-by: Evan Bradley <evan-bradley@users.noreply.github.com>

commit cde2b0af181cae8333f1200e8f6750bfb4af7cf2
Author: Brandon Johnson <brandon.johnson@observiq.com>
Date:   Fri May 10 08:45:08 2024 -0400

    [opampextension]: Move custom message interface to separate module (#32951)

    **Description:** <Describe what has changed.>
    * Breaks our the custom message interface to a separate module, so other
    components can use the interface without needing to import the
    `opampextension` module in its entirety.

    We could temporarily alias the old methods if we'd like, but I think
    that the CustomMessage stuff has been so short lived that, in addition
    to the alpha status of the opampextension component, it feels justified
    to just skip the deprecation process and move it to a new module.

    **Link to tracking Issue:** Closes #32950

    **Testing:**
    * Covered by existing unit tests

    **Documentation:**
    * Added more documentation on usage in the new module.
    * Modified opampextension docs to point to the new module.

commit 0894a437bda260e5c4770914c94ab674f1172fce
Author: Curtis Robert <crobert@splunk.com>
Date:   Fri May 10 04:39:17 2024 -0700

    [chore][CONTRIBUTING.md] Update adding component directions (#32957)

    **Description:** <Describe what has changed.>
    <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
    Ex. Adding a feature - Explain what this achieves.-->
    This is two main changes:
    1. Remove `goleak` section. It's now added by default by mdatagen,
    there's nothing required of users here.
    2. Add information and reformat the `Last steps` section of adding a new
    component.
        - Move the directions to be bullet points
    - Add `make generate` to make sure the component's README is updated
    properly
    - Explicitly point out that stability and distribution needs to be
    updated in `metadata.yaml`
    - Add step for adding the component to the releases repo. My
    understanding is that if a component is `Alpha`, it should be included
    in the release, so I've made that a noted part of the steps here. (Let
    me know if we should word this in a more "optional" way.)

    ---------

    Co-authored-by: Pablo Baeyens <pbaeyens31+github@gmail.com>

commit fba86583b486fd40f190f3c994b8d9a84c81723c
Author: Huy Vo <hvoam@amazon.com>
Date:   Fri May 10 04:34:09 2024 -0700

    Add connector usage to the testbed (#32881)

    **Description:** Added a new component to the testbed called
    DataConnectors which allows connectors to be added to the testbed
    config. Also, added a sample connector correctness test using the
    routingconnector as an example of the usage.

    **Link to tracking Issue:** #30165

    **Testing:** Sample correctness test using routingconnector.

    **Documentation:** Will update the testbed README with new addition.

    ---------

    Co-authored-by: Bryan Aguilar <bryaag@amazon.com>

commit 6015403943ced9d3014c2249cbb41906e9a3fb32
Author: Ankit Patel <8731662+ankitpatel96@users.noreply.github.com>
Date:   Fri May 10 00:57:05 2024 -0400

    Instantiate ID in pkg/stanza/adapter tests (#32966)

    **Description:** <Describe what has changed.>
    In https://github.com/open-telemetry/opentelemetry-collector/pull/10069,
    I am making Type an interface. This means the zero value of Type will be
    nil - which will cause this test to fail. Initializing ID instead of
    relying on the zero value fixes this

    ---------

    Co-authored-by: Pablo Baeyens <pbaeyens31+github@gmail.com>
    Co-authored-by: Bogdan Drutu <bogdandrutu@gmail.com>

commit a4b0e5928e46c23a0ab42e2a72d468156d62051b
Author: lkwronski <45148751+lkwronski@users.noreply.github.com>
Date:   Fri May 10 00:06:25 2024 +0200

    [processor/transform] Add common where clause (#31491)

    **Description:**  Add global conditions  with where clause
    <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
    Ex. Adding a feature - Explain what this achieves.-->

    **Link to tracking Issue:** Fixes #27830

    **Testing:** Unit tests

    **Documentation:** TODO

    ~~The main objective is to extend the `ContextStatements` struct by
    adding a new `Conditions` parameter. By introducing `Conditions` to
    `ContextStatements`, we can now apply a global condition to all related
    statements in `WithStatementSequenceGlobalConditions` function.~~

    Thanks in advance for your feedback! If this changes will be fine, I
    will add common where clause into another context `span`, `metrics`.

commit c0512b91f0ad83d2e7c56c193bc8503693ea569c
Author: Michal Pristas <michal.pristas@gmail.com>
Date:   Thu May 9 21:06:40 2024 +0200

    [pkg/ottl] Added support for timezone in Time converter (#32479)

    **Description:**
    Added support for default timezone in Time converter.
    Timezone is optional and can be specified as so: `Time("2023-05-26
    12:34:56", "%Y-%m-%d %H:%M:%S", "America/New_York")`

    **Link to tracking Issue:** #32140

    **Testing:** Unit tests added

    **Documentation:** Documentation in ottl/Readme updated

    ---------

    Co-authored-by: Tyler Helmuth <12352919+TylerHelmuth@users.noreply.github.com>
    Co-authored-by: Evan Bradley <11745660+evan-bradley@users.noreply.github.com>

commit 7fd145b5fceca5faadd35f5bcfca2d043fbd6e52
Author: shalper2 <99686388+shalper2@users.noreply.github.com>
Date:   Thu May 9 11:37:07 2024 -0500

    [chore][receiver/splunkenterprise] Splunkent wire component (#32795)

    **Description:** Graduate splunkenterprise receiver component to alpha

    **Link to tracking Issue:**

    **Testing:** Performed `make otelcontribcol` and ran resulting binary
    with the following config:
    ```yaml
    extensions:
        basicauth/indexer:
            client_auth:
                username: admin
                password: securityFirst
        basicauth/cluster_master:
            client_auth:
                username: admin
                password: securityFirst

    receivers:
        splunkenterprise:
            indexer:
                auth:
                  authenticator: basicauth/indexer
                endpoint: "https://localhost:8089/"
                timeout: 45s
            cluster_master:
                auth:
                  authenticator: basicauth/cluster_master
                endpoint: "https://localhost:8089/"
                timeout: 45s

    exporters:
      otlp:
        endpoint: 127.0.0.1:8000

    service:
      extensions: [basicauth/indexer, basicauth/cluster_master]
      pipelines:
        metrics:
          receivers: [splunkenterprise]
          exporters: [otlp]
    ```

    and received the following output:
    ```
    sh ~> ./otelcontribcol_linux_amd64 --config=file:config.yaml
    2024-05-08T17:34:33.032-0500 info service@v0.100.0/service.go:102 Setting up own telemetry...
    2024-05-08T17:34:33.032-0500 info service@v0.100.0/telemetry.go:103 Serving metrics {"address": ":8888", "level": "Normal"}
    2024-05-08T17:34:33.032-0500 info receiver@v0.100.0/receiver.go:310 Development component. May change in the future. {"kind": "receiver", "name": "splunkenterprise", "data_type": "metrics"}
    2024-05-08T17:34:33.033-0500 info service@v0.100.0/service.go:169 Starting otelcontribcol... {"Version": "0.100.0-dev", "NumCPU": 16}
    2024-05-08T17:34:33.033-0500 info extensions/extensions.go:34 Starting extensions...
    2024-05-08T17:34:33.033-0500 info extensions/extensions.go:37 Extension is starting... {"kind": "extension", "name": "basicauth/cluster_master"}
    2024-05-08T17:34:33.033-0500 info extensions/extensions.go:52 Extension started. {"kind": "extension", "name": "basicauth/cluster_master"}
    2024-05-08T17:34:33.033-0500 info extensions/extensions.go:37 Extension is starting... {"kind": "extension", "name": "basicauth/indexer"}
    2024-05-08T17:34:33.033-0500 info extensions/extensions.go:52 Extension started. {"kind": "extension", "name": "basicauth/indexer"}
    2024-05-08T17:34:33.033-0500 info service@v0.100.0/service.go:195 Everything is ready. Begin running and processing data.
    ```

    indicating that the collector was able to successfully start with the
    component configured.

    **Documentation:** Documentation was updated to indicate change in
    status from development to alpha

    ---------

    Co-authored-by: Curtis Robert <crobert@splunk.com>

commit e57185cb2c48e6e11ab8db73e63f4b36adcc2134
Author: Raj Nishtala <113392743+rnishtala-sumo@users.noreply.github.com>
Date:   Thu May 9 11:36:03 2024 -0400

    fix(test): Skip flaky test around forcing collector re-registration until the root cause is confirmed (#32937)

    **Description:** Remove flaky test around forcing collector
    re-registration until the root cause is confirmed

    **Link to tracking Issue:**
    https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/32785

    **Testing:** Unit tests

commit bcc9fe467b2b7937ac709fea15e3f65179aa11df
Author: Carson Ip <carsonip@users.noreply.github.com>
Date:   Thu May 9 16:19:04 2024 +0100

    [exporter/elasticsearch] Replace go-elasticsearch BulkIndexer with go-docappender (#32359)

    **Description:** <Describe what has changed.>
    <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
    Ex. Adding a feature - Explain what this achieves.-->
    Replace go-elasticsearch BulkIndexer with go-docappender BulkIndexer for
    Flush function in preparation for reliability fixes. Maintain similar
    interface and implementation to go-elasticsearch BulkIndexer.

    Further changes to expose individual `docappender.BulkIndexer` instances
    are needed down the road but it is out of the scope of this PR.

    Implications of this change:
    - flush timeout is now enforced on client side
    - oversize payload special handling is now removed
    - go-docappender uses bulk request filterPath which means bulk response
    is smaller, less JSON parsing and lower CPU usage
    - document level retry debug logging is removed as retries are done
    transparently

    ~~Blocked by #32585~~

    **Link to tracking Issue:** <Issue number if applicable> Fixes #32378

    **Testing:** Integration test is passing

    ---------

    Co-authored-by: Vishal Raj <vishal.raj@elastic.co>

commit 17f5711fefff4e2cc26cf3e6414c676d33a0ba61
Author: Curtis Robert <crobert@splunk.com>
Date:   Thu May 9 08:13:31 2024 -0700

    [chore][receiver/splunkenterprise] Add header to README (#32956)

    **Description:** <Describe what has changed.>
    <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
    Ex. Adding a feature - Explain what this achieves.-->
    The readme for the Splunk Enterprise receiver does not currently have
    the autogenerated header. This was missing because `mdatagen` requires
    `<!-- status autogenerated section -->` and `<!-- end autogenerated
    section -->` to know where to insert the generated data.

commit 59d08fcba1d71d92ee9abb3ede7f6c353717bb39
Author: Curtis Robert <crobert@splunk.com>
Date:   Thu May 9 03:26:49 2024 -0700

    [chore][CI/CD][arm] Trigger arm runs on label (#32955)

    **Description:** <Describe what has changed.>
    <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
    Ex. Adding a feature - Explain what this achieves.-->
    I found in
    https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/32948
    that the label `Run ARM` has been added, but the `build-and-test-arm /
    arm-unittest-matrix (pull_request) ` workflow is still skipped. This is
    because the `label` action does not trigger a retry.

    From
    [documentation](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request):
    ```
    if no activity types are specified, the workflow runs when a pull request is opened or reopened or when the head branch of the pull request is updated.
    ```

    We need to specify that labelling issues should trigger the workflow to
    check to see if it needs to run again. I've copied the added section
    from the Windows workflow. I also added that we should only run on PRs
    against `main`.

    **Testing:**
    This PR shows it's working as it should now. Arm test was [originally
    skipped](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/9009218559/job/24753003216?pr=32955),
    but after adding the label, tests [have
    started](https://github.com/open-telemetry/opentelemetry-collector-contrib/actions/runs/9009223570/job/24753017935?pr=32955)

commit b1bbd587d4adc89f9cbc34754c4e67123d8e5283
Author: Daniel Jaglowski <jaglows3@gmail.com>
Date:   Wed May 8 12:38:49 2024 -0500

    [chore][fileconsumer] Skip flaky TestFlushPeriodEOF on windows (#32946)

    See
    https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/32715

    This also adds a bit more debugging info for other tests which fail on
    the same expectation, since it's not very obvious what was expected vs
    actually found.

commit fec5543b69f0266130b40b440b763f89568816fb
Author: Stefan Kurek <stefan.kurek@observiq.com>
Date:   Wed May 8 13:38:19 2024 -0400

    [receiver/vcenter] Switches Over Metadata Configs Waiting for v0.100.0 Release (#32913)

    **Description:** <Describe what has changed.>
    A number of configurations were disabled by default and had warnings
    that they were going to be enabled in v0.101.0 (1 metric had a warning
    that it was going to be removed).

    Now that v0.100.0 has been release, I have removed all of these
    warnings, and made the modifications that the warnings "warned" about. I
    have also updated the tests to reflect this.

    **Link to tracking Issue:** <Issue number if applicable>
    #32803 #32805 #32821 #32531 #32557

    **Testing:** <Describe what testing was performed and which tests were
    added.>
    Unit/integration tests updated and tested. Local environment tested.

    **Documentation:** <Describe the documentation added.>
    New documentation generated based on the metadata.

commit 497fed777540f5a627445804afacbe3b4ee33ba0
Author: lizeyuan <lzyutf8@163.com>
Date:   Thu May 9 01:20:05 2024 +0800

    [remotetapprocessor] use 'time/rate' to limit traffic (#32481)

    bug: The remotetapprocessor `limit` configure doesn't work.
    how to fix: use `time/rate` to limit traffic.

    Resolves
    https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/32385

    ---------

    Co-authored-by: Andrzej Stencel <astencel@sumologic.com>

commit f4a3147bc5006e01ea6c7b57f6980ce4864cdb79
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Wed May 8 10:19:15 2024 -0700

    fix(deps): update module github.com/open-telemetry/otel-arrow to v0.22.0 (#32105)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    |
    [github.com/open-telemetry/otel-arrow](https://togithub.com/open-telemetry/otel-arrow)
    | `v0.18.0` -> `v0.22.0` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fopen-telemetry%2fotel-arrow/v0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fopen-telemetry%2fotel-arrow/v0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fopen-telemetry%2fotel-arrow/v0.18.0/v0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fopen-telemetry%2fotel-arrow/v0.18.0/v0.22.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>open-telemetry/otel-arrow
    (github.com/open-telemetry/otel-arrow)</summary>

    ###
    [`v0.22.0`](https://togithub.com/open-telemetry/otel-arrow/releases/tag/v0.22.0)

    [Compare
    Source](https://togithub.com/open-telemetry/otel-arrow/compare/v0.21.0...v0.22.0)

    Includes
    [#&#8203;178](https://togithub.com/open-telemetry/otel-arrow/issues/178).

    [CHANGELOG](https://togithub.com/open-telemetry/otel-arrow/blob/main/CHANGELOG.md)

    ###
    [`v0.21.0`](https://togithub.com/open-telemetry/otel-arrow/releases/tag/v0.21.0)

    [Compare
    Source](https://togithub.com/open-telemetry/otel-arrow/compare/v0.20.0...v0.21.0)

    See the
    [CHANGELOG](https://togithub.com/open-telemetry/otel-arrow/blob/main/CHANGELOG.md).

    ###
    [`v0.20.0`](https://togithub.com/open-telemetry/otel-arrow/releases/tag/v0.20.0)

    [Compare
    Source](https://togithub.com/open-telemetry/otel-arrow/compare/v0.19.0...v0.20.0)

    ##### What's Changed

    - Backport lint fixes from OTel-Collector-Contrib PR 31996 by
    [@&#8203;jmacd](https://togithub.com/jmacd) in
    [https://github.com/open-telemetry/otel-arrow/pull/163](https://togithub.com/open-telemetry/otel-arrow/pull/163)
    - Upgrade collector to v0.97.0 by
    [@&#8203;moh-osman3](https://togithub.com/moh-osman3) in
    [https://github.com/open-telemetry/otel-arrow/pull/164](https://togithub.com/open-telemetry/otel-arrow/pull/164)

    **Full Changelog**:
    https://github.com/open-telemetry/otel-arrow/compare/v0.19.0...v0.20.0

    ###
    [`v0.19.0`](https://togithub.com/open-telemetry/otel-arrow/releases/tag/v0.19.0)

    [Compare
    Source](https://togithub.com/open-telemetry/otel-arrow/compare/v0.18.0...v0.19.0)

    See
    [CHANGELOG.md](https://togithub.com/open-telemetry/otel-arrow/blob/main/CHANGELOG.md#0190---2024-03-26)
    for release notes.

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjM0MC4xMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit 344990300ec413e990cdf406525523130c2ece46
Author: Stefan Kurek <stefan.kurek@observiq.com>
Date:   Wed May 8 12:57:11 2024 -0400

    [receiver/vcenter] Adds New Packet Dropped Rate Metric for VMs (#32930)

    **Description:** <Describe what has changed.>
    Adds new default disabled (with Warning log for default enabled on next
    release) metric `vcenter.vm.network.packet.drop.rate` for Virtual
    Machines.

    This metric makes use of the `droppedRx` and `droppedTx` Network
    performance metrics detailed
    [here](https://vdc-repo.vmware.com/vmwb-repository/dcr-public/d1902b0e-d479-46bf-8ac9-cee0e31e8ec0/07ce8dbd-db48-4261-9b8f-c6d3ad8ba472/network_counters.html)
    for Virtual machines. This would use the same metric attributes as the
    other VM packet metrics and closely match
    `vcenter.vm.network.packet.rate` in every other way.

    **Link to tracking Issue:** <Issue number if applicable>
    #32929

    **Testing:** <Describe what testing was performed and which tests were
    added.>
    Unit/integration tests updated and tested. Local environment tested.

    **Documentation:** <Describe the documentation added.>
    New documentation generated based on the metadata.

commit 89d09e0ba97df2eca607d017741113a292f916bd
Author: Stefan Kurek <stefan.kurek@observiq.com>
Date:   Wed May 8 12:42:09 2024 -0400

    [receiver/vcenter] Fixes Cluster Resource Attributes for Datastore Resource (#32687)

    **Description:** <Describe what has changed.>
    Removed the `vcenter.cluster.name` resource attribute from all Datastore
    resources.

    **Link to tracking Issue:** <Issue number if applicable>
    #32674

    **Testing:** <Describe what testing was performed and which tests were
    added.>
    Unit/integration tests updated and tested. Local environment tested.

    **Documentation:** <Describe the documentation added.>
    New documentation generated based on the metadata.

    ---------

    Co-authored-by: Daniel Jaglowski <jaglows3@gmail.com>
    Co-authored-by: Curtis Robert <crobert@splunk.com>

commit 3e868a41264da17cba9a7123709b90b3effe19d3
Author: James Hughes (Splunk) <jameshughes@splunk.com>
Date:   Wed May 8 09:35:40 2024 -0700

    [chore] Add some docs to readme regarding file exporter (#32855)

    Admittedly I tested this via docker-compose. I can expand to having a
    full docker-compose file with telemetry gen if that's preferred.

    ---------

    Co-authored-by: Alex Boten <223565+codeboten@users.noreply.github.com>

commit 097c74557b4d1f5569397ea5204549e8953af043
Author: Curtis Robert <crobert@splunk.com>
Date:   Wed May 8 09:32:00 2024 -0700

    [receiver/googlecloudpubsubreceiver] Fix memory leak during shutdown (#32361)

    **Description:** <Describe what has changed.>
    <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
    Ex. Adding a feature - Explain what this achieves.-->
    This PR contains the following changes:
    1. Add `Close` call to the receiver's GRPC client. Without this,
    goroutines were being leaked on shutdown.
    2. Change `grpc.Dial` -> `grpc.NewClient`. They offer the same
    functionality, but `Dial` is being deprecated in favor of `NewClient`.
    3. Enable `goleak` checks on this receiver to help ensure no goroutines
    are being leaked.
    4. Change a couple `Assert.Nil` calls to `Assert.NoError`. The output of
    `NoError` includes the error message if hit, `Nil` simply includes the
    object's address, i.e. `&status.Error{s:(*status.Status)(0xc00007e158)}`

    **Link to tracking Issue:** <Issue number if applicable>
    #30438

    **Testing:** <Describe what testing was performed and which tests were
    added.>
    All existing tests are passing, as well as added goleak check.

commit bbcbe3cfbfee86d36b79e7c80a0f1d7e8acfbb66
Author: Anthony Mirabella <a9@aneurysm9.com>
Date:   Wed May 8 11:58:37 2024 -0400

    Move Aneurysm9 to emeritus status (#32943)

    I have been unable to provide this position the bandwidth that it
    deserves and it is time to formalize recognition of that fact.

    Signed-off-by: Anthony J Mirabella <a9@aneurysm9.com>

commit 0e2f434de88ca8ae1a9b1969c61ff4bfecde03b7
Author: Lauri Tirkkonen <101785056+lauri-paypay@users.noreply.github.com>
Date:   Wed May 8 18:13:49 2024 +0300

    [exporter/loadbalancing] Improve the performance when merging traces belonging to the same backend (#32032)

    **Description:** no need to reimplement that in an extremely
    allocation-inefficient fashion.

    I'm actually not sure why mergeTraces() and mergeMetrics() need to exist
    in the first place; all the other exporters coupled with the batch
    processor work just fine, not sure why loadbalancing would be special.
    https://github.com/open-telemetry/opentelemetry-collector-contrib/pull/30141
    seems to imply they were implemented to improve performance, but I don't
    really understand why batch processor would not have been sufficient for
    that improvement originally.

    benchmarks before:
    ```
    	goos: darwin
    	goarch: arm64
    	pkg: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/loadbalancingexporter
    	BenchmarkMergeTraces_X100-8     	   50214	     23507 ns/op
    	BenchmarkMergeTraces_X500-8     	   10000	    113952 ns/op
    	BenchmarkMergeTraces_X1000-8    	    5208	    226062 ns/op
    	BenchmarkMergeMetrics_X100-8    	   64933	     18540 ns/op
    	BenchmarkMergeMetrics_X500-8    	   12885	     91418 ns/op
    	BenchmarkMergeMetrics_X1000-8   	    6590	    184584 ns/op
    	PASS
    	ok  	github.com/open-telemetry/opentelemetry-collector-contrib/exporter/loadbalancingexporter	9.783s
    ```
    and after:
    ```
    	goos: darwin
    	goarch: arm64
    	pkg: github.com/open-telemetry/opentelemetry-collector-contrib/exporter/loadbalancingexporter
    	BenchmarkMergeTraces_X100-8     	295886529	         3.836 ns/op
    	BenchmarkMergeTraces_X500-8     	309865370	         3.833 ns/op
    	BenchmarkMergeTraces_X1000-8    	310739948	         3.800 ns/op
    	BenchmarkMergeMetrics_X100-8    	315567813	         3.841 ns/op
    	BenchmarkMergeMetrics_X500-8    	310341650	         3.849 ns/op
    	BenchmarkMergeMetrics_X1000-8   	314292003	         3.830 ns/op
    	PASS
    	ok  	github.com/open-telemetry/opentelemetry-collector-contrib/exporter/loadbalancingexporter	10.733s
    ```
    **Link to tracking Issue:** n/a
    **Testing:** unit tests pass & cpu time for our collectors using
    loadbalancingexporter (12 replicas, total of 25k-40k spans/sec) went
    from 800ms-1400ms/sec down to <40msec/sec.
    **Documentation:** none

    ---------

    Co-authored-by: Juraci Paixão Kröhling <juraci.github@kroehling.de>

commit f617c655708938b3a8f245143c8926e2acf07812
Author: Juraci Paixão Kröhling <juraci@kroehling.de>
Date:   Wed May 8 16:17:38 2024 +0200

    [connector/servicegraph] Remove use of host.GetExporters (#32902)

    Fixes #31628

    Signed-off-by: Juraci Paixão Kröhling <juraci@kroehling.de>

    ---------

    Signed-off-by: Juraci Paixão Kröhling <juraci@kroehling.de>
    Co-authored-by: Alex Boten <223565+codeboten@users.noreply.github.com>

commit ba9ef9e02a79783fbf8ad66ce292df5da5393850
Author: Juraci Paixão Kröhling <juraci@kroehling.de>
Date:   Wed May 8 16:05:19 2024 +0200

    [receiver/haproxy] Unit test timing out (#32940)

    I wasn't able to reproduce the exact situation from CI, but the tests I
    changed weren't completing at all here. Looking closely, it looks like
    they never closed the stream, something the first test does. After
    closing it, the tests start passing locally for me. While I'm not
    confident this will fix the CI flaky failures, this does make the test
    work locally for me.

    Fixes #32877

    Signed-off-by: Juraci Paixão Kröhling <juraci@kroehling.de>

    Signed-off-by: Juraci Paixão Kröhling <juraci@kroehling.de>
    Co-authored-by: Alex Boten <223565+codeboten@users.noreply.github.com>

commit f1f2a85bfe750c04569d11189288895957331adb
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Wed May 8 06:45:54 2024 -0700

    chore(deps): update dependency go to v1.22.3 (#32621)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Type | Update | Change |
    |---|---|---|---|
    | [go](https://go.dev/) ([source](https://togithub.com/golang/go)) |
    toolchain | minor | `1.21.9` -> `1.22.3` |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>golang/go (go)</summary>

    ###
    [`v1.22.3`](https://togithub.com/golang/go/compare/go1.22.2...go1.22.3)

    ###
    [`v1.22.2`](https://togithub.com/golang/go/compare/go1.22.1...go1.22.2)

    ###
    [`v1.22.1`](https://togithub.com/golang/go/compare/go1.22.0...go1.22.1)

    ###
    [`v1.22.0`](https://togithub.com/golang/go/compare/go1.21.7...go1.22rc1)

    ###
    [`v1.21.10`](https://togithub.com/golang/go/compare/go1.21.9...go1.21.10)

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjM0MC4xMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVub3ZhdGVib3QiXX0=-->

    ---------

    Signed-off-by: Juraci Paixão Kröhling <juraci@kroehling.de>
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
    Co-authored-by: Juraci Paixão Kröhling <juraci@kroehling.de>

commit 66ce83d8442a2274cd17d53704368a4a56968a60
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Wed May 8 06:37:58 2024 -0700

    Update module github.com/grafana/loki/pkg/push to v0.0.0-20240507085123-772616cd8f5c (#32897)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    | [github.com/grafana/loki/pkg/push](https://togithub.com/grafana/loki)
    | `v0.0.0-20240506154431-a772ed705c65` ->
    `v0.0.0-20240507085123-772616cd8f5c` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgrafana%2floki%2fpkg%2fpush/v0.0.0-20240507085123-772616cd8f5c?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fgrafana%2floki%2fpkg%2fpush/v0.0.0-20240507085123-772616cd8f5c?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fgrafana%2floki%2fpkg%2fpush/v0.0.0-20240506154431-a772ed705c65/v0.0.0-20240507085123-772616cd8f5c?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgrafana%2floki%2fpkg%2fpush/v0.0.0-20240506154431-a772ed705c65/v0.0.0-20240507085123-772616cd8f5c?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyIsInJlbm92YXRlYm90Il19-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit 353c7afa65c194994dfdf0629c7e07180d7029ae
Author: Curtis Robert <crobert@splunk.com>
Date:   Wed May 8 06:32:31 2024 -0700

    [chore][receiver/sqlserver] Update documentation for darwin and linux OS (#32878)

    **Description:** <Describe what has changed.>
    <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
    Ex. Adding a feature - Explain what this achieves.-->
    With the enhancement in
    https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/30297,
    the SQL Server receiver can now run on MacOS and Linux, since it no
    longer solely relies on Windows. The difference in functionality has
    (hopefully) been documented clearly between the different platforms, so
    the unsupported warning can be removed. I missed this in my previous
    PRs.

commit 7a248f5cc8303e1854f4bbc5be3db4869edd7f7f
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Wed May 8 12:45:51 2024 +0200

    Update module github.com/aws/aws-sdk-go to v1.52.4 (#32928)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    | [github.com/aws/aws-sdk-go](https://togithub.com/aws/aws-sdk-go) |
    `v1.52.3` -> `v1.52.4` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go/v1.52.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go/v1.52.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go/v1.52.3/v1.52.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go/v1.52.3/v1.52.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>aws/aws-sdk-go (github.com/aws/aws-sdk-go)</summary>

    ###
    [`v1.52.4`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1524-2024-05-07)

    [Compare
    Source](https://togithub.com/aws/aws-sdk-go/compare/v1.52.3...v1.52.4)

    \===

    ##### Service Client Updates

    -   `service/b2bi`: Updates service documentation
    -   `service/budgets`: Updates service API and documentation
        -   This release adds tag support for budgets and budget actions.
    - `service/resiliencehub`: Updates service API, documentation, and
    paginators
    -   `service/route53profiles`: Updates service API and documentation

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyIsInJlbm92YXRlYm90Il19-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit 061b8eab3862fae67143d4f7a58ef4c73b164345
Author: Dominik Rosiek <58699848+sumo-drosiek@users.noreply.github.com>
Date:   Wed May 8 11:41:28 2024 +0200

    sumologicexporter!: change metrics behavior (#32737)

    **Description:** <Describe what has changed.>
    <!--Ex. Fixing a bug - Describe the bug and how this fixes the issue.
    Ex. Adding a feature - Explain what this achieves.-->

    * remove suppport for carbon2 and graphite
    * add support for otlp format
    * do not support metadata attributes
    * do not support source headers
    * set otlp as default format

    This PR reduces size of #32315

    **Link to tracking Issue:** #31479

    **Testing:**

    - unit tests
    - manual tests

    **Documentation:**

    - Readme

    ---------

    Signed-off-by: Dominik Rosiek <drosiek@sumologic.com>
    Co-authored-by: Adam Boguszewski <aboguszewski@sumologic.com>

commit 11396751f11905fe62df105f444cef9ab531def0
Author: David Ashpole <dashpole@google.com>
Date:   Wed May 8 04:36:53 2024 -0400

    chore: add constants for prometheus translation (#32830)

    **Description:**

    This is a cleanup to consolidate the constants used for prometheus
    translation in a single place.

    ---------

    Co-authored-by: Curtis Robert <crobert@splunk.com>

commit 984a1855a796c694c5b5b4ab0e8059f17d91eaee
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Wed May 8 10:29:34 2024 +0200

    Update module google.golang.org/api to v0.178.0 (#32927)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    |
    [google.golang.org/api](https://togithub.com/googleapis/google-api-go-client)
    | `v0.177.0` -> `v0.178.0` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fapi/v0.178.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fapi/v0.178.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fapi/v0.177.0/v0.178.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fapi/v0.177.0/v0.178.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>googleapis/google-api-go-client
    (google.golang.org/api)</summary>

    ###
    [`v0.178.0`](https://togithub.com/googleapis/google-api-go-client/releases/tag/v0.178.0)

    [Compare
    Source](https://togithub.com/googleapis/google-api-go-client/compare/v0.177.0...v0.178.0)

    ##### Features

    - **all:** Auto-regenerate discovery clients
    ([#&#8203;2561](https://togithub.com/googleapis/google-api-go-client/issues/2561))
    ([2d22d11](https://togithub.com/googleapis/google-api-go-client/commit/2d22d11df9643a4fad0f9e952d7a92a419370122))
    - **all:** Auto-regenerate discovery clients
    ([#&#8203;2564](https://togithub.com/googleapis/google-api-go-client/issues/2564))
    ([b313e4b](https://togithub.com/googleapis/google-api-go-client/commit/b313e4bd70e601fd7a2a931f168fb1dece980e75))
    - **all:** Auto-regenerate discovery clients
    ([#&#8203;2565](https://togithub.com/googleapis/google-api-go-client/issues/2565))
    ([0843d21](https://togithub.com/googleapis/google-api-go-client/commit/0843d217048b2e713c0d273b95b33afb99926a8c))
    - **all:** Auto-regenerate discovery clients
    ([#&#8203;2567](https://togithub.com/googleapis/google-api-go-client/issues/2567))
    ([76b27f1](https://togithub.com/googleapis/google-api-go-client/commit/76b27f162032649ddb3cb3f06ed24c7333b3fa66))
    - **all:** Auto-regenerate discovery clients
    ([#&#8203;2568](https://togithub.com/googleapis/google-api-go-client/issues/2568))
    ([d922e3b](https://togithub.com/googleapis/google-api-go-client/commit/d922e3b559ce5832941390b4f9bf91210e3f6579))
    - **all:** Auto-regenerate discovery clients
    ([#&#8203;2570](https://togithub.com/googleapis/google-api-go-client/issues/2570))
    ([f2da582](https://togithub.com/googleapis/google-api-go-client/commit/f2da582c9f6aab240d44c8ebd2dcc43f5096f896))
    - **all:** Auto-regenerate discovery clients
    ([#&#8203;2571](https://togithub.com/googleapis/google-api-go-client/issues/2571))
    ([0c976dc](https://togithub.com/googleapis/google-api-go-client/commit/0c976dcc8d1d653f2284ce273493e6714a6d4b2a))
    - **gen:** Add internaloption.EnableNewAuthLibrary
    ([#&#8203;2519](https://togithub.com/googleapis/google-api-go-client/issues/2519))
    ([8c74bb8](https://togithub.com/googleapis/google-api-go-client/commit/8c74bb83e2bc27188154c506e63a3e0f3a042f55))
    - **google-api-go-client:** Add x-goog-api-version header
    ([#&#8203;2563](https://togithub.com/googleapis/google-api-go-client/issues/2563))
    ([fe54ffd](https://togithub.com/googleapis/google-api-go-client/commit/fe54ffd92359506fca1ffd70dc647db0ab9a903c))

    ##### Documentation

    - Update commit style in CONTRIBUTING
    ([#&#8203;2566](https://togithub.com/googleapis/google-api-go-client/issues/2566))
    ([5e44215](https://togithub.com/googleapis/google-api-go-client/commit/5e44215df618fcafd5f6c1bbe259062cddd32f1a))

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyIsInJlbm92YXRlYm90Il19-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>

commit 03ebf971a8d0cd88a47e82c1093ee488d477df1f
Author: acha1os <dimi.theod@hotmail.com>
Date:   Wed May 8 10:54:01 2024 +0300

    [exporter/syslogexporter] use errors.Join instead of go.uber.org/multierr (#32925)

    **Description:**
    syslogexporter: use errors.Join instead of go.uber.org/multierr

    **Link to tracking Issue:**

    [#25121](https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/25121)

    **Testing:**

    **Documentation:**

commit 8c6760fe60c0054ec6e87f1b784be518dcdf7ebb
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue May 7 12:04:23 2024 -0700

    Update module github.com/jaegertracing/jaeger to v1.57.0 (#32908)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    |
    [github.com/jaegertracing/jaeger](https://togithub.com/jaegertracing/jaeger)
    | `v1.56.0` -> `v1.57.0` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fjaegertracing%2fjaeger/v1.57.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fjaegertracing%2fjaeger/v1.57.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fjaegertracing%2fjaeger/v1.56.0/v1.57.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fjaegertracing%2fjaeger/v1.56.0/v1.57.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>jaegertracing/jaeger
    (github.com/jaegertracing/jaeger)</summary>

    ###
    [`v1.57.0`](https://togithub.com/jaegertracing/jaeger/releases/tag/v1.57.0)

    [Compare
    Source](https://togithub.com/jaegertracing/jaeger/compare/v1.56.0...v1.57.0)

    ##### Backend Changes

    ##### 🐞 Bug fixes, Minor Improvements

    - \[jaeger-v2] define an internal interface of storage v2 spanstore
    ([@&#8203;james-ryans](https://togithub.com/james-ryans) in
    [#&#8203;5399](https://togithub.com/jaegertracing/jaeger/pull/5399))
    - Combine jaeger ui release notes with jaeger backend
    ([@&#8203;albertteoh](https://togithub.com/albertteoh) in
    [#&#8203;5405](https://togithub.com/jaegertracing/jaeger/pull/5405))
    - \[agent] use grpc.newclient
    ([@&#8203;yurishkuro](https://togithub.com/yurishkuro) in
    [#&#8203;5392](https://togithub.com/jaegertracing/jaeger/pull/5392))
    - \[sampling] fix merging of per-operation strategies into service
    strategies without them ([@&#8203;kuujis](https://togithub.com/kuujis)
    in [#&#8203;5277](https://togithub.com/jaegertracing/jaeger/pull/5277))
    - Create sampling templates when creating sampling store
    ([@&#8203;JaeguKim](https://togithub.com/JaeguKim) in
    [#&#8203;5349](https://togithub.com/jaegertracing/jaeger/pull/5349))
    - \[kafka-consumer] set the rackid in consumer config
    ([@&#8203;sappusaketh](https://togithub.com/sappusaketh) in
    [#&#8203;5374](https://togithub.com/jaegertracing/jaeger/pull/5374))
    - Adding best practices badge to readme.md
    ([@&#8203;jkowall](https://togithub.com/jkowall) in
    [#&#8203;5369](https://togithub.com/jaegertracing/jaeger/pull/5369))

    ##### 👷 CI Improvements

    - Moving global write permissions down into the ci jobs
    ([@&#8203;jkowall](https://togithub.com/jkowall) in
    [#&#8203;5370](https://togithub.com/jaegertracing/jaeger/pull/5370))

    ##### 📊 UI Changes

    ##### 🐞 Bug fixes, Minor Improvements

    - Improve trace page title with data and unique emoji (fixes
    [#&#8203;2256](https://togithub.com/jaegertracing/jaeger/issues/2256))
    ([@&#8203;nox](https://togithub.com/nox) in
    [#&#8203;2275](https://togithub.com/jaegertracing/jaeger-ui/pull/2275))
    - Require node version 20+
    ([@&#8203;Baalekshan](https://togithub.com/Baalekshan) in
    [#&#8203;2274](https://togithub.com/jaegertracing/jaeger-ui/pull/2274))

    </details>

    ---

    ### Configuration

    📅 **Schedule**: Branch creation - "on tuesday" (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.

    ---

    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box

    ---

    This PR has been generated by [Mend
    Renovate](https://www.mend.io/free-developer-tools/renovate/). View
    repository job log
    [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib).

    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ1cGRhdGVkSW5WZXIiOiIzNy4zNDAuMTAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyIsInJlbm92YXRlYm90Il19-->

    ---------

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com>
    Co-authored-by: Pablo Baeyens <pbaeyens31+github@gmail.com>

commit 34cd3f8b0dece8fe6f50e21a7eedbc0be79f2d71
Author: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Date:   Tue May 7 12:03:59 2024 -0700

    Update module github.com/open-telemetry/opentelemetry-collector-contrib/cmd/telemetrygen to v0.100.0 (#32912)

    [![Mend
    Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

    This PR contains the following updates:

    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    |
    [github.com/open-telemetry/opentelemetry-collector-contrib/cmd/telemetrygen](https://togithub.com/open-telemetry/opentelemetry-collector-contrib)
    | `v0.99.0` -> `v0.100.0` |
    [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.100.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.100.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.99.0/v0.100.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fopen-telemetry%2fopentelemetry-collector-contrib%2fcmd%2ftelemetrygen/v0.99.0/v0.100.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |

    ---

    > [!WARNING]
    > Some dependencies could not be looked up. Check the Dependency
    Dashboard for more information.

    ---

    ### Release Notes

    <details>
    <summary>open-telemetry/opentelemetry-collector-contrib
    (github.com/open-telemetry/opentelemetry-collector-contrib/cmd/telemetrygen)</summary>

    ###
    [`v0.100.0`](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/blob/HEAD/CHANGELOG.md#v01000)

    [Compare
    Source](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/compare/v0.99.0...v0.100.0)

    ##### 🛑 Breaking changes 🛑

    - `receiver/hostmetrics`: enable feature gate
    `receiver.hostmetrics.normalizeProcessCPUUtilization`
    ([#&#8203;31368](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/31368))
    This changes the value of the metric `process.cpu.utilization` by
    dividing it by the number of CPU cores.
        For example, if a process is using 2 CPU cores on a 16-core machine,
    the value of this metric was previously `2`, but now it will be `0.125`.

    - `testbed`: Remove deprecated `GetAvailablePort` function
    ([#&#8203;32800](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32800))

    ##### 🚀 New components 🚀

    - `healthcheckv2extension`: Introduce the skeleton for the temporary
    healthcheckv2 extension.
    ([#&#8203;26661](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26661))
    - `intervalprocessor`: Implements the new interval processor. See the
    README for more info about how to use it
    ([#&#8203;29461](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29461))
    - `OpenTelemetry Protocol with Apache Arrow Receiver`: Implementation
    copied from opentelemetry/otel-arrow repository
    [@&#8203;v0](https://togithub.com/v0).20.0.
    ([#&#8203;26491](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26491))
    - `roundrobinconnector`: Add a roundrobin connector, that can help
    single thread components to scale
    ([#&#8203;32853](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32853))

    ##### 💡 Enhancements 💡

    - `telemetrygen`: Add support to set metric name
    ([#&#8203;32840](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32840))

    - `exporter/kafkaexporter`: Enable setting message topics using resource
    attributes.
    ([#&#8203;31178](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/31178))

    - `exporter/datadog`: Introduces the Datadog Agent logs pipeline for
    exporting logs to Datadog under the
    "exporter.datadogexporter.UseLogsAgentExporter" feature gate.
    ([#&#8203;32327](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32327))

    - `elasticsearchexporter`: Add retry.retry_on_status config
    ([#&#8203;32584](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32584))
    Previously, the status codes that trigger retries were hardcoded to be
    429, 500, 502, 503, 504.
    It is now configurable using `retry.retry_on_status`, and defaults to
    `[429, 500, 502, 503, 504]` to avoid a breaking change.
    To avoid duplicates, it is recommended to configure
    `retry.retry_on_status` to `[429]`, which would be the default in a
    future version.

    - `exporter/splunkhec`: add experimental exporter batcher config
    ([#&#8203;32545](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32545))

    - `windowsperfcountersreceiver`: Returns partial errors for failures
    during scraping to prevent throwing out all successfully retrieved
    metrics
    ([#&#8203;16712](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/16712))

    - `jaegerencodingextension`: Promote jaegerencodingextension to alpha
    ([#&#8203;32699](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32699))

    - `kafkaexporter`: add an ability to publish kafka messages with message
    key based on metric resource attributes - it will allow partitioning
    metrics in Kafka.
    ([#&#8203;29433](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29433),
    [#&#8203;30666](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/30666),
    [#&#8203;31675](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/31675))

    - `cmd/opampsupervisor`: Switch the OpAMP Supervisor's bootstrap config
    to use the nopreceiver and nopexporter
    ([#&#8203;32455](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32455))

    - `otlpencodingextension`: Move otlpencodingextension to alpha
    ([#&#8203;32701](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32701))

    - `prometheusreceiver`: Prometheus receivers and exporters now preserve
    'unknown', 'info', and 'stateset' types.
    ([#&#8203;16768](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/16768))
    It uses the metric.metadata field with the 'prometheus.type' key to
    store the original type.

    - `ptracetest`: Add support for ignore scope span instrumentation scope
    information
    ([#&#8203;32852](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32852))

    - `sqlserverreceiver`: Enable direct connection to SQL Server
    ([#&#8203;30297](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/30297))
    Directly connecting to SQL Server will enable the receiver to gather
    more metrics
    for observing the SQL Server instance. The first metric added with this
    update is
        `sqlserver.database.io.read_latency`.

    - `connector/datadog`: The Datadog connector now has a config option to
    identify top-level spans by span kind. This new logic can be enabled by
    setting `traces::compute_top_level_by_span_kind` to true in the Datadog
    connector config. Default is false.
    ([#&#8203;32005](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32005))
    `traces::compute_top_level_by_span_kind` needs to be enabled in both the
    Datadog connector and Datadog exporter configs if both components are
    being used.
    With this new logic, root spans and spans with a server or consumer
    `span.kind` will be marked as top-level. Additionally, spans with a
    client or producer `span.kind` will have stats computed.
    Enabling this config option may increase the number of spans that
    generate trace metrics, and may change which spans appear as top-level
    in Datadog.

    - `exporter/datadog`: The Datadog exporter now has a config option to
    identify top-level spans by span kind. This new logic can be enabled by
    setting `traces::compute_top_level_by_span_kind` to true in the Datadog
    exporter config. Default is false.
    ([#&#8203;32005](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32005))
    `traces::compute_top_level_by_span_kind` needs to be enabled in both the
    Datadog connector and Datadog exporter configs if both components are
    being used.
    With this new logic, root spans and spans with a server or consumer
    `span.kind` will be marked as top-level. Additionally, spans with a
    client or producer `span.kind` will have stats computed.
    Enabling this config option may increase the number of spans that
    generate trace metrics, and may change which spans appear as top-level
    in Datadog.

    - `exporter/datadog`: Support stable semantic conventions for HTTP spans
    ([#&#8203;32823](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32823))

    - `cmd/opampsupervisor`: Persist collector remote config & telemetry
    settings
    ([#&#8203;21078](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21078))

    - `cmd/opampsupervisor`: Support AcceptsRestartCommand Capability.
    ([#&#8203;21077](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21077))

    - `telemetrygen`: Add headers to gRPC metadata for logs
    ([#&#8203;32668](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32668))

    - `sshcheckreceiver`: Add support for running this receiver on Windows
    ([#&#8203;30650](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/30650))

    - `zipkinencodingextension`: Move zipkinencodingextension to alpha
    ([#&#8203;32702](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32702))

    ##### 🧰 Bug fixes 🧰

    - `prometheusremotewrite`: Modify prometheusremotewrite.FromMetrics to
    only generate target_info if there are metrics, as otherwise you can't
    deduce the timestamp.
    ([#&#8203;32318](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32318))
    - `prometheusremotewrite`: Change prometheusremotewrite.FromMetrics so
    that the target_info metric is only generated if at least one
    identifying OTel resource attribute (service.name and/or
    service.instance.id) is defined.
    ([#&#8203;32148](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32148))
    - `k8sclusterreceiver`: Fix container state metadata
    ([#&#8203;32676](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/32676))
    - `sumologicexporter`: do not replace `.` with `_` for prometheus format
    ([#&#8203;31479](https://togithub.com/open-telemetry/opentelemetry-collector-con…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants