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

Compile with logstransformprocessor #310

Merged
merged 262 commits into from
Nov 24, 2023
Merged

Conversation

RoryCrispin
Copy link

Description:

Link to tracking Issue:

Testing:

Documentation:

djaglowski and others added 30 commits October 25, 2023 08:17
…28580)

Although the persister is generally expected, we can easily protect
against cases where it is not provided and save some work as well. This
becomes more important with open-telemetry#27823 which interacts with the persister
during the Stop function.
…er.org/multierr (open-telemetry#27908)

**Description:** <Describe what has changed.>
use errors.Join instead of go.uber.org/multierr

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

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

**Documentation:** <Describe the documentation added.>
**Description:**
Add a new traces config `trace_buffer` that specifies the number of
Datadog Agent TracerPayloads to buffer before dropping.

**Link to tracking Issue:**
Fixes open-telemetry#28577

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

**Documentation:** <Describe the documentation added.>
mulitmod -> multimod

Signed-off-by: Alex Boten <[email protected]>
We see a lot of issues opened that are related to collector usability.
As shared in open-telemetry#27546, documentation can often be added to help clear up
confusion, or provide relevant information. We can use the
`documentation` label for this going forward.

Resolves open-telemetry#27456

---------

Co-authored-by: bryan-aguilar <[email protected]>
It looks like this change was missed in a couple of releases.

Signed-off-by: Alex Boten <[email protected]>
…mplete the transition to container.cpu.utilization (open-telemetry#27795)

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

Following up open-telemetry#24183, this PR removes the deprecated
`container.cpu.percent` metric as explained in README's [deprecation
section](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/dockerstatsreceiver#transition-to-cpu-utilization-metric-name-aligned-with-opentelemetry-specification).

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

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

```
❯ go test -race -timeout 300s -parallel 4 --tags="" ./... -count 1
ok      github.com/open-telemetry/opentelemetry-collector-contrib/receiver/dockerstatsreceiver  1.480s
ok      github.com/open-telemetry/opentelemetry-collector-contrib/receiver/dockerstatsreceiver/internal/metadata        1.525s
```

**Documentation:** the documentation has been updated using `mdatagen`

---------

Co-authored-by: Pablo Baeyens <[email protected]>
**Description:** <Describe what has changed.>

Add an integration tests to datadog exporter that:
1. Use the mock server in datadog exporter testutil as the backend
2. Starts a collector with otlp receiver, datadog connector, tail
sampling processor, datadog exporter. Have datadog exporter send data to
the mock server
3. Generate and send 10 spans to collector, 5 of which are expected to
be sampled by tail sampling processor
4. Verify the mock server receives 5 traces (sampled) + APM stats on all
10 traces pre-sampled

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

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

**Documentation:** <Describe the documentation added.>
…telemetry#27889)

**Description:**

Since each `tailSamplingSpanProcessor`'s instance is not concurrently
called by the ticker worker (it's a 1-to-1 relationship) we can safely
reuse a slice for the tag mutators used in `makeDecision`. Additionally
the tag mutators themselves were causing a lot of allocations and since
they are static, we created constants for them preventing allocations on
each execution of `makeDecision`.

This improved the `makeDecision` benchmark by ~31%.

```
benchstat old.txt new.txt
name         old time/op  new time/op  delta
Sampling-10  51.8µs ± 1%  35.7µs ± 1%  -30.94%  (p=0.008 n=5+5)
```

**Testing:** Unit tests unchanged; added a benchmark

**Documentation:** Perf improvement so no documentation changes needed.

This was all based on production profiling data at Polar Signals running
the collector. Here is a snapshot of the original profiling data we
started with: https://pprof.me/52a7fab/

Judging by the production profiling data, a 31% improvement on the
`makeDecision` codepath, should translate roughly into a 6% baseline CPU
improvement our production deployment of the opentelemetry collector.

The profiling data after improving: https://pprof.me/58c0e84/

This improvement was done as part of the Let's Profile Livestream where
we optimize popular open-source projects live:
https://www.youtube.com/watch?v=vkMQRjiNTHM

---------

Co-authored-by: Jiekun <[email protected]>
…7446)

Fixes open-telemetry#21045

Signed-off-by: Juraci Paixão Kröhling <[email protected]>

---------

Signed-off-by: Juraci Paixão Kröhling <[email protected]>
…#28623)

**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 Documentation surrounding Azure Event Hub Metric creation is
out-of-date or not accurate.

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

open-telemetry#28622

**Testing:** <Describe what testing was performed and which tests were
added.>
No code was modified, only documentation.

**Documentation:** <Describe the documentation added.>
Updated the README.md in reciever/azureeventhub to be more accurate and
improved the Metric mapping table to be consistent with the Log section.
…lemetry#28634)

**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.-->
Allow the Consumer Group to be set in the Configuration.

**Link to tracking Issue:** <Issue number if applicable>
[open-telemetry#28633]

**Testing:** <Describe what testing was performed and which tests were
added.>
Locally tested and verified. No unit testing added.

**Documentation:** <Describe the documentation added.>
New configuration option added to README.
open-telemetry#28637)

Fixed a typo in README.md, in the example:

**Before:**
traces/in:
      receivers: [_**oltp**_]
      exporters: [routing]

**After:**
traces/in:
      receivers: [_**otlp**_]
      exporters: [routing]
See [design
document](https://docs.google.com/document/d/1KtH5atZQUs9Achbce6LiOaJxLbksNJenvgvyKLsJrkc/edit#heading=h.ioikt02qpy5f).

Depends on:

- [Implement ability for extensions to be notified about effective
configuration opentelemetry-collector#6596](open-telemetry/opentelemetry-collector#6596)
- [Make service.instance.id and other telemetry attributes available to
extensions opentelemetry-collector#6599](open-telemetry/opentelemetry-collector#6599)

Closes
open-telemetry#16618

---------

Signed-off-by: Sean Porter <[email protected]>
Co-authored-by: Daniel Jaglowski <[email protected]>
Co-authored-by: Tigran Najaryan <[email protected]>
Do not export function WithTracesMarshalers, WithMetricsMarshalers,
WithLogsMarshalers and pass checkapi

open-telemetry#26304

**Testing:** 
go run cmd/checkapi/main.go .
make chlog-validate
go test for kafkaexporter


Co-authored-by: Alex Boten <[email protected]>
…r readme (open-telemetry#28643)

The `compression` metric option appears more than once in the readme for
the googlecloudexporter exporter, so I've deleted one of the copies. The
first copy has more detail, so I preserved that one.
…emeritus (open-telemetry#28645)

Removed myself as code owner for bearertokenauth and added myself as
emeritus cc: @jpkrohling @frzifus @atoulme atoulme
…tely (open-telemetry#28650)

**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.-->
When decoding from Azure Resource Log format to OTel if a numeric field
is represented without quotes the data will not be decoded and will fail
silently.

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

**Testing:** <Describe what testing was performed and which tests were
added.>
Invalid data captured from Azure Diagnostic Setting and used to create a
unit test. Then data was reprocessed with the Event Hubs Receiver.

**Documentation:** <Describe the documentation added.>
None required as this was a bug within the code.
…pen-telemetry#27898)

The current behavior consists in exiting early on the first difference
found.

This approach continues to look at all changes, and only exits after
outputting a git diff of all the changes.
…ts (open-telemetry#23637)

**Description:**
Add a test suite to the opentelemetry-contrib repository that checks the
behavior of the HEC exporter against a Splunk Enterprise instance.
…telemetry#27606)

**Description:**
We would double-encode JSON objects as strings. We typically have
encoded strings as JSON strings as static responses to issues
encountered during data processing. Along the way, we adopted JSON
objects to match the Splunk Enterprise API. However, we didn't stop
encoding as JSON strings, resulting in double encoded JSON strings.

**Link to tracking Issue:**
Fixes open-telemetry#27604 

**Testing:**
Unit test changes.
## 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.-->
Implementation of exporter to OpenSearch using opensearch-go library. As
of now, this PR was heavily inspired by
https://github.com/dbason/opentelemetry-collector-contrib/tree/opensearch-exporter/exporter/opensearchexporter.

By default, requests sent adhere to the OpenSearch Catalog [schema for
logs](https://github.com/opensearch-project/opensearch-catalog/tree/main/schema/observability/logs),
but allows users to export using the Elastic Common Schema as well.

This PR also:
- enables users to define the `bulk_action` between `create` and `index`
- enables users to define the logs index without necessarily adhering to
the new [index naming
conventions](opensearch-project/observability#1405)
through the `LogsIndex` config.

## Tracking Issue: 


[23611](open-telemetry#23611)

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

### Integration
- Successful round-trip to HTTP endpoint,
- Permanent error during round-trip,
- Retryable error response for first request, followed by successful
response on retry,
- Two retriable error responses, followed by successful response on
second retry.

### Manual
- Authentication using `configtls.TLSSetting` (`ca_file`, `cert_file`,
`key_file`)
- Tested in EKS and K3s clusters running
[opni](https://github.com/rancher/opni).

---------

Signed-off-by: João Henri <[email protected]>
Signed-off-by: João Henri <[email protected]>
…in EventXML (Windows) (open-telemetry#28587)

**Description:**
The [XML schema for Windows events supports `Data` elements without the
`Name`
attribute](https://learn.microsoft.com/en-us/windows/win32/wes/eventschema-datafieldtype-complextype),
however, the current implementation doesn't capture `Data` elements
without the `Name` attribute.

Capturing such elements is specially important for events for which the
publisher metadata is invalid. These elements contain the data that will
give a user a much better chance of actually understanding the event,
see
[here](open-telemetry#21491 (comment))
for an example.

I'm adding also the optional `Binary` element. Although this element
typically requires knowledge of the actual data type it is representing
sometimes it can be useful together with the data elements.

I consider this to be a breaking change because it modifies the layout
of the event generated by the package. It isn't an addition, the old
representation is changed, please refer to the changes in tests to see
the difference.

**Link to tracking Issue:**
This is the last pending item to fix open-telemetry#24493, open-telemetry#21491 ([item
5](open-telemetry#21491)).

**Testing:**
- Local run of the affected receiver and package
- "Run Windows" on my fork

**Documentation:**
N/A

---------

Co-authored-by: Daniel Jaglowski <[email protected]>
…via regular expression (open-telemetry#28654)

**Description:**
Allow to compare metrics resource attributes or metric attribute values
by matching on a portion of the dimension value with a regular
expression.

**Link to tracking Issue:**
Fixes open-telemetry#27690

**Testing:**
Unit tests.
…ry#28636)

**Description:**
Move the golden package to pkg/golden so it can be available to
downstream projects.

**Link to tracking Issue:**
Fixes open-telemetry#28594

---------

Co-authored-by: Daniel Jaglowski <[email protected]>
- Change `knownFiles` to `[]*reader.Metadata`. No files are held here.
- Introduce new `previousPollReaders` list, which holds open files from
the previous poll interval. If for any reason a file is closed, it
should immediately be removed from the list and its metadata should be
added to `knownFiles`.
- Introduce notion that each `reader.Metadata` should be treated as a
singleton. When a reader is closed, it pops out its `Metadata` so it can
be appended to `knownFiles`.
renovate bot and others added 26 commits November 22, 2023 15:43
…lemetry#29439)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/facebook/time](https://togithub.com/facebook/time) |
require | digest | `620e14e` -> `cb922d5` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…pan data (open-telemetry#29115)

**Description:** This is to clarify the metrics name generated.

**Link to tracking Issue:**
[26520](open-telemetry#26520)

**Testing:** n/a docs

**Documentation:** n/a
This should be the last one.

Signed-off-by: Alex Boten <[email protected]>
…ric (open-telemetry#27247)

Implement a new metric `system.linux.memory.available`,
which I defined in
open-telemetry/semantic-conventions#257.

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

**Testing:** added a check to an existing unit test. I had to refactor
the test a bit: it assumed that a certain metric will be at position 0,
which is not true now.

**Documentation:** Added note in `metadata.yaml`

---------

Co-authored-by: Curtis Robert <[email protected]>
[![Mend Renovate logo
banner](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/Azure/azure-kusto-go](https://togithub.com/Azure/azure-kusto-go)
| require | minor | `v0.13.1` -> `v0.14.2` |
|
[github.com/Azure/azure-sdk-for-go/sdk/azcore](https://togithub.com/Azure/azure-sdk-for-go)
| require | minor | `v1.6.0` -> `v1.9.0` |
|
[github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://togithub.com/Azure/azure-sdk-for-go)
| require | minor | `v1.3.0` -> `v1.4.0` |
|
[github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor](https://togithub.com/Azure/azure-sdk-for-go)
| require | minor | `v0.8.0` -> `v0.10.2` |
|
[github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources](https://togithub.com/Azure/azure-sdk-for-go)
| require | minor | `v1.0.0` -> `v1.1.1` |

---

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

---

### Release Notes

<details>
<summary>Azure/azure-kusto-go
(github.com/Azure/azure-kusto-go)</summary>

###
[`v0.14.2`](https://togithub.com/Azure/azure-kusto-go/releases/tag/v0.14.2)

[Compare
Source](https://togithub.com/Azure/azure-kusto-go/compare/v0.14.0...v0.14.2)

##### Fixed

- Size used for RawDataSize taken from gzip reader was of the gzip size
and not the original reader size

###
[`v0.14.0`](https://togithub.com/Azure/azure-kusto-go/releases/tag/v0.14.0)

[Compare
Source](https://togithub.com/Azure/azure-kusto-go/compare/v0.13.1...v0.14.0)

##### Added

-   Support streaming for blob, for Managed client as well.
-   Support more urls for kusto, including http and port.

</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.

👻 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Signed-off-by: Alex Boten <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
Co-authored-by: Alex Boten <[email protected]>
[![Mend Renovate logo
banner](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/aws/aws-sdk-go](https://togithub.com/aws/aws-sdk-go) |
require | minor | `v1.47.10` -> `v1.48.3` |
| [github.com/aws/aws-sdk-go-v2](https://togithub.com/aws/aws-sdk-go-v2)
| require | minor | `v1.22.2` -> `v1.23.1` |
|
[github.com/aws/aws-sdk-go-v2/config](https://togithub.com/aws/aws-sdk-go-v2)
| require | minor | `v1.24.0` -> `v1.25.5` |
|
[github.com/aws/aws-sdk-go-v2/credentials](https://togithub.com/aws/aws-sdk-go-v2)
| require | minor | `v1.15.2` -> `v1.16.4` |
|
[github.com/aws/aws-sdk-go-v2/service/kinesis](https://togithub.com/aws/aws-sdk-go-v2)
| require | minor | `v1.22.1` -> `v1.23.0` |
|
[github.com/aws/aws-sdk-go-v2/service/s3](https://togithub.com/aws/aws-sdk-go-v2)
| require | minor | `v1.19.0` -> `v1.44.0` |
|
[github.com/aws/aws-sdk-go-v2/service/sts](https://togithub.com/aws/aws-sdk-go-v2)
| require | patch | `v1.25.1` -> `v1.25.4` |
|
[github.com/aws/aws-xray-sdk-go](https://togithub.com/aws/aws-xray-sdk-go)
| require | patch | `v1.8.2` -> `v1.8.3` |

---

> [!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.48.3`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1483-2023-11-22)

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

\===

##### Service Client Updates

-   `service/kinesis`: Updates service API and documentation
- This release adds support for resource based policies on streams and
consumers.
-   `service/s3control`: Updates service API and documentation
- Amazon S3 Batch Operations now manages buckets or prefixes in a single
step.
-   `service/sagemaker`: Updates service API and documentation
- This feature adds the end user license agreement status as a model
access configuration parameter.

###
[`v1.48.2`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1482-2023-11-21)

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

\===

##### Service Client Updates

- `service/cloudfront`: Updates service API, documentation, paginators,
and examples
- This release adds support for CloudFront KeyValueStore, a globally
managed key value datastore associated with CloudFront Functions.
-   `service/cloudfront-keyvaluestore`: Adds new service
-   `service/ec2`: Updates service documentation
    -   Documentation updates for Amazon EC2.
-   `service/inspector-scan`: Adds new service
- `service/iotsitewise`: Updates service API, documentation, and
paginators
- `service/iottwinmaker`: Updates service API, documentation, and
paginators
-   `service/s3`: Updates service API, documentation, and examples
- Add support for automatic date based partitioning in S3 Server Access
Logs.

###
[`v1.48.1`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1481-2023-11-20)

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

\===

##### Service Client Updates

- `service/codestar-connections`: Updates service API, documentation,
and paginators
-   `service/docdb`: Updates service API and documentation
- Amazon DocumentDB updates for new cluster storage configuration:
Amazon DocumentDB I/O-Optimized.
-   `service/ec2`: Updates service API and documentation
- This release adds support for Security group referencing over Transit
gateways, enabling you to simplify Security group management and control
of instance-to-instance traffic across VPCs that are connected by
Transit gateway.

###
[`v1.48.0`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v1480-2023-11-17)

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

\===

##### Service Client Updates

-   `service/appmesh`: Updates service API and documentation
-   `service/athena`: Updates service API and documentation
    -   Adding SerivicePreProcessing time metric
-   `service/cloud9`: Updates service documentation and examples
- A minor doc only update related to changing the date of an API change.
-   `service/cloudformation`: Updates service API and documentation
- This release adds a new flag ImportExistingResources to
CreateChangeSet. Specify this parameter on a CREATE- or UPDATE-type
change set to import existing resources with custom names instead of
recreating them.
-   `service/codepipeline`: Updates service API and documentation
- CodePipeline now supports overriding source revisions to achieve
manual re-deploy of a past revision
- `service/codestar-connections`: Updates service API, documentation,
and paginators
-   `service/connect`: Updates service API
-   `service/dlm`: Updates service documentation
-   `service/ec2`: Updates service API and documentation
- This release adds new features for Amazon VPC IP Address Manager
(IPAM) Allowing a choice between Free and Advanced Tiers, viewing public
IP address insights across regions and in Amazon Cloudwatch, use IPAM to
plan your subnet IPs within a VPC and bring your own autonomous system
number to IPAM.
-   `service/ecr`: Updates service API and documentation
- Documentation and operational updates for Amazon ECR, adding support
for pull through cache rules for upstream registries that require
authentication.
-   `service/elasticmapreduce`: Updates service API and documentation
- Launch support for IAM Identity Center Trusted Identity Propagation
and workspace storage encryption using AWS KMS in EMR Studio
-   `service/eventbridge`: Updates service API and documentation
- `service/internetmonitor`: Updates service API, documentation, and
paginators
-   `service/ivs`: Updates service API
-   `service/ivschat`: Updates service API
-   `service/kinesisvideo`: Updates service documentation
    -   Docs only build to bring up-to-date with public docs.
-   `service/location`: Updates service API
-   `service/medialive`: Updates service API and documentation
- MediaLive has now added support for per-output static image overlay.
-   `service/mgn`: Updates service API
-   `service/osis`: Updates service API and documentation
-   `service/pipes`: Updates service API
- `service/rds`: Updates service API, documentation, waiters,
paginators, and examples
- This release adds support for option groups and replica enhancements
to Amazon RDS Custom.
- `service/redshift`: Updates service API, documentation, and paginators
- Updated SDK for Amazon Redshift, which you can use to configure a
connection with IAM Identity Center to manage access to databases. With
these, you can create a connection through a managed application. You
can also change a managed application, delete it, or get information
about an existing one.
-   `service/redshift-serverless`: Updates service API and documentation
-   `service/s3`: Updates service API, documentation, and examples
- Removes all default 0 values for numbers and false values for booleans
-   `service/sso-admin`: Updates service API and documentation
-   `service/sso-oidc`: Updates service API, documentation, and examples
-   `service/sts`: Updates service documentation
    -   API updates for the AWS Security Token Service
-   `service/trustedadvisor`: Adds new service
-   `service/verifiedpermissions`: Updates service API and documentation
-   `service/wisdom`: Updates service API, documentation, and paginators

##### SDK Features

-   `service/macie`: Deprecate Macie
    -   This change removes the macie service, since it is deprecated.

###
[`v1.47.13`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v14713-2023-11-16)

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

\===

##### Service Client Updates

-   `service/dlm`: Updates service API and documentation
-   `service/ec2`: Updates service API and documentation
- Enable use of tenant-specific PublicSigningKeyUrl from device trust
providers and onboard jumpcloud as a new device trust provider.
-   `service/fsx`: Updates service API and documentation
-   `service/glue`: Updates service API, documentation, and paginators
- Introduces new column statistics APIs to support statistics generation
for tables within the Glue Data Catalog.
- `service/imagebuilder`: Updates service API, documentation, and
paginators
-   `service/iot`: Updates service API and documentation
- GA release the ability to index and search devices based on their
GeoLocation data. With GeoQueries you can narrow your search to retrieve
devices located in the desired geographic boundary.
- `service/ivs-realtime`: Updates service API, documentation, and
paginators
-   `service/kafka`: Updates service API and documentation
-   `service/lambda`: Updates service API and documentation
- Adds support for logging configuration in Lambda Functions. Customers
will have more control how their function logs are captured and to which
cloud watch log group they are delivered also.
-   `service/macie2`: Updates service API and documentation
-   `service/mediapackage`: Updates service API and documentation
- DRM_TOP_LEVEL_COMPACT allows placing content protection elements at
the MPD level and referenced at the AdaptationSet level
- `service/pinpoint-sms-voice-v2`: Updates service API, documentation,
and paginators
-   `service/polly`: Updates service API and documentation
- Add new engine - long-form - dedicated for longer content, such as
news articles, training materials, or marketing videos.
- `service/quicksight`: Updates service API, documentation, and
paginators
- Custom permission support for QuickSight roles; Three new datasources
STARBURST, TRINO, BIGQUERY; Lenient mode changes the default behavior to
allow for exporting and importing with certain UI allowed errors,
Support for permissions and tags export and import.
-   `service/sagemaker`: Updates service API and documentation
- Amazon SageMaker Studio now supports Trainium instance types -
trn1.2xlarge, trn1.32xlarge, trn1n.32xlarge.
-   `service/ssm`: Updates service API and documentation
- This release introduces the ability to filter automation execution
steps which have parent steps. In addition, runbook variable information
is returned by GetAutomationExecution and parent step information is
returned by the DescribeAutomationStepExecutions API.
- `service/ssm-incidents`: Updates service API, documentation, and
paginators
- `service/sso-admin`: Updates service API, documentation, and
paginators
-   `service/transfer`: Updates service API and documentation
- Introduced S3StorageOptions for servers to enable directory listing
optimizations and added Type fields to logical directory mappings.

###
[`v1.47.12`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v14712-2023-11-15)

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

\===

##### Service Client Updates

- `service/autoscaling`: Updates service API, documentation, and
examples
- This release introduces Instance Maintenance Policy, a new EC2 Auto
Scaling capability that allows customers to define whether instances are
launched before or after existing instances are terminated during
instance replacement operations.
-   `service/cloudtrail`: Updates service API and documentation
- The Lake Repricing feature lets customers configure a BillingMode for
an event data store. The BillingMode determines the cost for ingesting
and storing events and the default and maximum retention period for the
event data store.
-   `service/ec2`: Updates service API and documentation
- AWS EBS now supports Snapshot Lock, giving users the ability to lock
an EBS Snapshot to prohibit deletion of the snapshot. This release
introduces the LockSnapshot, UnlockSnapshot & DescribeLockedSnapshots
APIs to manage lock configuration for snapshots. The release also
includes the dl2q\_24xlarge.
-   `service/finspace`: Updates service API
-   `service/finspace-data`: Updates service API
-   `service/lambda`: Updates service API
    -   Add Java 21 (java21) support to AWS Lambda
-   `service/mwaa`: Updates service API and documentation
- `service/rds`: Updates service API, documentation, waiters,
paginators, and examples
- Updates Amazon RDS documentation for support for upgrading RDS for
MySQL snapshots from version 5.7 to version 8.0.
-   `service/redshift`: Updates service API and documentation
- The custom domain name SDK for Amazon Redshift provisioned clusters is
updated with additional required parameters for modify and delete
operations. Additionally, users can provide domain names with longer
top-level domains.
- `service/s3control`: Updates service API, documentation, and
paginators
- Add 5 APIs to create, update, get, list, delete S3 Storage Lens
group(eg. CreateStorageLensGroup), 3 APIs for
tagging(TagResource,UntagResource,ListTagsForResource), and update to
StorageLensConfiguration to allow metrics to be aggregated on Storage
Lens groups.
-   `service/ssm-sap`: Updates service API

##### SDK Bugs

-   Don't generate cloudwatchlogs event streams tests for now.
- The test harness does not handle event stream APIs with a host prefix
at this time.

###
[`v1.47.11`](https://togithub.com/aws/aws-sdk-go/blob/HEAD/CHANGELOG.md#Release-v14711-2023-11-14)

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

\===

##### Service Client Updates

-   `service/backup`: Updates service API, documentation, and paginators
-   `service/cleanrooms`: Updates service API and documentation
-   `service/connect`: Updates service API and documentation
-   `service/glue`: Updates service API, documentation, and paginators
- Introduces new storage optimization APIs to support automatic
compaction of Apache Iceberg tables.
-   `service/iot`: Updates service API and documentation
- This release introduces new attributes in API CreateSecurityProfile,
UpdateSecurityProfile and DescribeSecurityProfile to support management
of Metrics Export for AWS IoT Device Defender Detect.
-   `service/lambda`: Updates service API
    -   Add Python 3.12 (python3.12) support to AWS Lambda
-   `service/mediatailor`: Updates service API
-   `service/pipes`: Updates service API and documentation
- `service/resource-explorer-2`: Updates service API, documentation, and
paginators
-   `service/sagemaker`: Updates service API and documentation
- This release makes Model Registry Inference Specification fields as
not required.
-   `service/signer`: Updates service documentation
    -   Documentation updates for AWS Signer
-   `service/states`: Updates service API and documentation
- This release adds support to redrive executions in AWS Step Functions
with a new RedriveExecution operation.

##### SDK Bugs

-   `aws/defaults`: Feature updates to endpoint credentials provider.
- Add support for dynamic auth token from file and EKS container host in
configured URI.

</details>

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

###
[`v1.23.1`](https://togithub.com/aws/aws-sdk-go-v2/compare/v1.23.0...v1.23.1)

[Compare
Source](https://togithub.com/aws/aws-sdk-go-v2/compare/v1.23.0...v1.23.1)

###
[`v1.23.0`](https://togithub.com/aws/aws-sdk-go-v2/compare/v1.22.2...v1.23.0)

[Compare
Source](https://togithub.com/aws/aws-sdk-go-v2/compare/v1.22.2...v1.23.0)

</details>

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

###
[`v1.8.3`](https://togithub.com/aws/aws-xray-sdk-go/blob/HEAD/CHANGELOG.md#Release-v183-2023-11-13)

[Compare
Source](https://togithub.com/aws/aws-xray-sdk-go/compare/v1.8.2...v1.8.3)

\================================

##### SDK Enhancements

##### SDK Bugs

- Update AWS SDK for Go depdencies [#PR
430](https://togithub.com/aws/aws-xray-sdk-go/pull/430)
- Fix HTTP2 rapid reset vulnerability [#PR
428](https://togithub.com/aws/aws-xray-sdk-go/pull/428)
- Omit URL's password when stringifying URL for segment name [#PR
422](https://togithub.com/aws/aws-xray-sdk-go/pull/422)

</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.

👻 **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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Signed-off-by: Alex Boten <[email protected]>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
Co-authored-by: Alex Boten <[email protected]>
…en-telemetry#29466)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/klauspost/compress](https://togithub.com/klauspost/compress)
| require | patch | `v1.17.2` -> `v1.17.3` |

---

> [!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.3`](https://togithub.com/klauspost/compress/releases/tag/v1.17.3)

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

#### What's Changed

- fse: Fix max header size by
[@&open-telemetry#8203;klauspost](https://togithub.com/klauspost) in
[https://github.com/klauspost/compress/pull/881](https://togithub.com/klauspost/compress/pull/881)
- zstd: Improve better/best compression by
[@&open-telemetry#8203;klauspost](https://togithub.com/klauspost) in
[https://github.com/klauspost/compress/pull/877](https://togithub.com/klauspost/compress/pull/877)
- gzhttp: Fix missing content type on Close by
[@&open-telemetry#8203;klauspost](https://togithub.com/klauspost) in
[https://github.com/klauspost/compress/pull/883](https://togithub.com/klauspost/compress/pull/883)

**Full Changelog**:
klauspost/compress@v1.17.2...v1.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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…net/http/otelhttp to v0.46.1 (open-telemetry#29465)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://togithub.com/open-telemetry/opentelemetry-go-contrib)
| require | patch | `v0.46.0` -> `v0.46.1` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…elemetry#29469)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/antonmedv/expr](https://togithub.com/antonmedv/expr) |
require | patch | `v1.15.3` -> `v1.15.4` |

---

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

---

### Release Notes

<details>
<summary>antonmedv/expr (github.com/antonmedv/expr)</summary>

###
[`v1.15.4`](https://togithub.com/antonmedv/expr/releases/tag/v1.15.4)

[Compare
Source](https://togithub.com/antonmedv/expr/compare/v1.15.3...v1.15.4)

-   Improved type checking for `$env`
-   Added support for floats in `sort()` built-in
-   Fixed: AST printing for `??` operator
-   Fixed: only emit `OpEqual{Int,String}` for simple types
- Fixed: fetch without `OpDeref`
([#&open-telemetry#8203;467](https://togithub.com/antonmedv/expr/issues/467))
- Docs: categorize Language Definition functions
([#&open-telemetry#8203;452](https://togithub.com/antonmedv/expr/issues/452))
-   Changed: `ast.Node` type now is not copied with `ast.Patch`

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…-telemetry#29470)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[cloud.google.com/go/spanner](https://togithub.com/googleapis/google-cloud-go)
| require | minor | `v1.51.0` -> `v1.53.0` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…metry#29471)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[google.golang.org/api](https://togithub.com/googleapis/google-api-go-client)
| require | minor | `v0.150.0` -> `v0.151.0` |

---

> [!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.151.0`](https://togithub.com/googleapis/google-api-go-client/releases/tag/v0.151.0)

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

##### Features

- **all:** Auto-regenerate discovery clients
([#&open-telemetry#8203;2253](https://togithub.com/googleapis/google-api-go-client/issues/2253))
([58f1c94](https://togithub.com/googleapis/google-api-go-client/commit/58f1c94d0de3b0e7715428ccc5ca17f1dfbab076))
- **all:** Auto-regenerate discovery clients
([#&open-telemetry#8203;2255](https://togithub.com/googleapis/google-api-go-client/issues/2255))
([10dbf2b](https://togithub.com/googleapis/google-api-go-client/commit/10dbf2b5d87783d3dc3de50ea627e740c784137a))
- **all:** Auto-regenerate discovery clients
([#&open-telemetry#8203;2256](https://togithub.com/googleapis/google-api-go-client/issues/2256))
([4024760](https://togithub.com/googleapis/google-api-go-client/commit/4024760da1cdf46e2e79495e65c5ddd1c2251d07))
- **all:** Auto-regenerate discovery clients
([#&open-telemetry#8203;2257](https://togithub.com/googleapis/google-api-go-client/issues/2257))
([b3fe441](https://togithub.com/googleapis/google-api-go-client/commit/b3fe441cccb3832da66b96ee3cb7a11db96bde53))
- **all:** Auto-regenerate discovery clients
([#&open-telemetry#8203;2258](https://togithub.com/googleapis/google-api-go-client/issues/2258))
([efe3d6f](https://togithub.com/googleapis/google-api-go-client/commit/efe3d6fd433ece9d59ce8b747774881f0fcf410c))
- **all:** Auto-regenerate discovery clients
([#&open-telemetry#8203;2259](https://togithub.com/googleapis/google-api-go-client/issues/2259))
([33863bf](https://togithub.com/googleapis/google-api-go-client/commit/33863bf9a68ec56ad0ebac93e614d3628b81416c))
- **all:** Auto-regenerate discovery clients
([#&open-telemetry#8203;2261](https://togithub.com/googleapis/google-api-go-client/issues/2261))
([edb9d86](https://togithub.com/googleapis/google-api-go-client/commit/edb9d869deb8bb98b9721cbaaa9703bc04a609fa))
- **all:** Auto-regenerate discovery clients
([#&open-telemetry#8203;2262](https://togithub.com/googleapis/google-api-go-client/issues/2262))
([93f5a5b](https://togithub.com/googleapis/google-api-go-client/commit/93f5a5bf913a771c774143e3bf9bd634d80bc7d8))
- **all:** Auto-regenerate discovery clients
([#&open-telemetry#8203;2263](https://togithub.com/googleapis/google-api-go-client/issues/2263))
([3e83ea6](https://togithub.com/googleapis/google-api-go-client/commit/3e83ea6f3926a6fbdd92e05db7f4e4705e7789ba))
- **all:** Auto-regenerate discovery clients
([#&open-telemetry#8203;2265](https://togithub.com/googleapis/google-api-go-client/issues/2265))
([786dca6](https://togithub.com/googleapis/google-api-go-client/commit/786dca6dfcb777d7dd6724fe08ccc424ad8e992e))

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…pen-telemetry#29474)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/hashicorp/consul/api](https://togithub.com/hashicorp/consul)
| require | minor | `v1.25.1` -> `v1.26.1` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…open-telemetry#29476)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/snowflakedb/gosnowflake](https://togithub.com/snowflakedb/gosnowflake)
| require | minor | `v1.6.25` -> `v1.7.0` |

---

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

---

### Release Notes

<details>
<summary>snowflakedb/gosnowflake
(github.com/snowflakedb/gosnowflake)</summary>

###
[`v1.7.0`](https://togithub.com/snowflakedb/gosnowflake/releases/tag/v1.7.0):
Release

[Compare
Source](https://togithub.com/snowflakedb/gosnowflake/compare/v1.6.25...v1.7.0)

- Please check Snowflake [community page for release
notes](https://community.snowflake.com/s/article/Go-Snowflake-Driver-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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…google.golang.org/grpc/otelgrpc to v0.46.1 (open-telemetry#29473)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc](https://togithub.com/open-telemetry/opentelemetry-go-contrib)
| require | patch | `v0.46.0` -> `v0.46.1` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…ector-contrib/cmd/telemetrygen to v0.89.0 (open-telemetry#29479)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/open-telemetry/opentelemetry-collector-contrib/cmd/telemetrygen](https://togithub.com/open-telemetry/opentelemetry-collector-contrib)
| require | minor | `v0.87.0` -> `v0.89.0` |

---

> [!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.89.0`](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/blob/HEAD/CHANGELOG.md#v0890)

##### 🛑 Breaking changes 🛑

- `pkg/stanza`: Improve parsing of Windows Event XML by handling
anonymous `Data` elements.
([#&open-telemetry#8203;21491](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21491))
This improves the contents of Windows log events for which the publisher
manifest is unavailable. Previously, anonymous `Data` elements were
ignored. This is a breaking change for users who were relying on the
previous data format.

- `processor/k8sattributes`: Graduate "k8sattr.rfc3339" feature gate to
Beta.
([#&open-telemetry#8203;28817](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28817))
Time format of `k8s.pod.start_time` attribute value migrated from
RFC3339:
    Before: 2023-07-10 12:34:39.740638 -0700 PDT m=+0.020184946
    After: 2023-07-10T12:39:53.112485-07:00
The feature gate can be temporary reverted back by adding
`--feature-gate=-k8sattr.rfc3339` to the command line.

- `filelogreceiver`: Change "Started watching file" log behavior
([#&open-telemetry#8203;28491](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28491))
Previously, every unique file path which was found by the receiver would
be remembered indefinitely.
This list was kept independently of the uniqueness / checkpointing
mechanism (which does not rely on the file path).
The purpose of this list was to allow us to emit a lot whenever a path
was seen for the first time.
This removes the separate list and relies instead on the same mechanism
as checkpointing. Now, a similar log is emitted
any time a file is found which is not currently checkpointed. Because
the checkpointing mechanism does not maintain history
indefintiely, it is now possible that a log will be emitted for the same
file path. This will happen when no file exists at
    the path for a period of time.

- `dockerstatsreceiver`: cpu.container.percent metric is removed in
favor of container.cpu.utilization
([#&open-telemetry#8203;21807](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21807))
The metric `container.cpu.percentage` is now removed.
`container.cpu.utilization` is enabled by default as a replacement.
For details, see the
[docs](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/dockerstatsreceiver#transition-to-cpu-utilization-metric-name-aligned-with-opentelemetry-specification).

- `encoding extensions`: Rename encoding extensions for consistency with
storage extensions
([#&open-telemetry#8203;24451](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/24451))
    -   `jaegerencoding` -> `jaeger_encoding`
    -   `otlpencoding` -> `otlp_encoding`
    -   `textencoding` -> `text_encoding`
    -   `zipkinencoding` -> `zipkin_encoding`

- `remoteobserverprocessor`: Rename remoteobserverprocessor to
remotetapprocessor
([#&open-telemetry#8203;27873](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27873))

- `collectdreceiver`: Stop using opencensus metrics, use the obsrecv
format
([#&open-telemetry#8203;25148](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/25148))

##### 🚩 Deprecations 🚩

- `datadogexporter`: Deprecate config `traces::peer_service_aggregation`
in favor of `traces::peer_tags_aggregation`
([#&open-telemetry#8203;29089](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29089))
- `postgresqlreceiver`: Deprecation of postgresql replication lag
metrics `postgresql.wal.lag` in favor of more precise
'postgresql.wal.delay'
([#&open-telemetry#8203;26714](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26714))

##### 🚀 New components 🚀

- `extension/opampextension`: Add a new extension that implements an
OpAMP agent for reporting the collector's health and effective
configuration.
([#&open-telemetry#8203;16462](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/16462))
- `sumologicprocessor`: add Sumo Logic Processor
([#&open-telemetry#8203;23946](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/23946))
move processor from
https://github.com/SumoLogic/sumologic-otel-collector/ repository
- `alertmanagerexporter`: Add new exporter for sending events as alerts
to Alertmanager
([#&open-telemetry#8203;23569](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/23569))
- `remotetapextension`: Add a new extension, remotetapextension to use
with the remoteobserverprocessor processors.
([#&open-telemetry#8203;19634](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/19634))
- `otlpencodingextension`: Introduce OTLP encoding extension
([#&open-telemetry#8203;6272](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/6272))
- `pkg/translator/azure`: Create a translator for Azure Resource Log
format
([#&open-telemetry#8203;18210](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/18210))

##### 💡 Enhancements 💡

- `awsxrayexporter`: Convert individual HTTP error events into
exceptions within subsegments for AWS SDK spans and strip AWS.SDK prefix
from remote aws service name
([#&open-telemetry#8203;27232](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27232))

- `azuremonitorexporter`: Added connection string support to the Azure
Monitor Exporter
([#&open-telemetry#8203;28853](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28853))
This enhancement simplifies the configuration process and aligns the
exporter with Azure Monitor's recommended practices.
The Connection String method allows the inclusion of various fields such
as the InstrumentationKey and IngestionEndpoint
within a single string, facilitating an easier and more integrated
setup.
While the traditional InstrumentationKey method remains supported for
backward compatibility, it will be phased out.
Users are encouraged to adopt the Connection String approach to ensure
future compatibility and to leverage the broader
    configuration options it enables.

- `opensearchexporter`: Add log exporting capability to the
opensearchexporter.
([#&open-telemetry#8203;23611](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/23611))

- `pdatatest`: Allow to compare metrics resource attributes or metric
attribute values by matching on a portion of the dimension value with a
regular expression.
([#&open-telemetry#8203;27690](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27690))
Use `MatchResourceAttributeValue("node_id", "cloud-node")` to match two
metrics with a resource attribute value that starts with "cloud-node".
Use `MatchMetricAttributeValue("hostname", "container-tomcat-",
"gauge.one", "sum.one")` to match metrics with the `hostname` attribute
starting with `container-tomcat-`.

- `processor/tailsampling`: adds optional upper bound duration for
sampling
([#&open-telemetry#8203;26115](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26115))

- `clickhouseexporter`: Add persistent storage support to clickhouse
exporter
([#&open-telemetry#8203;27653](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27653))

- `azuremonitorexporter`: Added documentation to describe how to use
with the AAD Auth Proxy and enable AAD based authentication.
([#&open-telemetry#8203;24451](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/24451))

- `azuremonitorexporter`: Extended Azure Monitor exporter to support
persistent queue. Default is for QueueSettings.Enabled to be false.
([#&open-telemetry#8203;25859](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/25859))

- `collectdreceiver`: Add support of confighttp.HTTPServerSettings
([#&open-telemetry#8203;28811](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28811))

- `collectdreceiver`: Promote collectdreceiver as beta component
([#&open-telemetry#8203;28658](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28658))

- `receiver/hostmetricsreceiver`: Added support for host's cpuinfo
frequnecies.
([#&open-telemetry#8203;27445](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27445))
In Linux the current frequency is populated using the values from
/proc/cpuinfo. An os specific implementation will be needed for Windows
and others.

- `datadogexporter`: Add a new traces config `trace_buffer` that
specifies the number of outgoing trace payloads to buffer before
dropping.
([#&open-telemetry#8203;28577](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28577))
If you start seeing log messages like `Payload in channel full. Dropped
1 payload.` in the datadog exporter, consider setting a higher
`trace_buffer` to avoid traces being dropped.

- `datadogexporter`: Add a new config `traces::peer_tags_aggregation`
that enables aggregation of peer related tags in Datadog exporter
([#&open-telemetry#8203;29089](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29089))

- `receiver/hostmetrics/scrapers/process`: add configuration option to
mute `error reading username for process`
([#&open-telemetry#8203;14311](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/14311),
[#&open-telemetry#8203;17187](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/17187))

- `syslogexporter`: Promote syslogexporter to alpha and add it to
otelcontribcol
([#&open-telemetry#8203;21242](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21242),
[#&open-telemetry#8203;21244](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21244),
[#&open-telemetry#8203;21245](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21245))

- `azureevenhubreceiver`: Allow the Consumer Group to be set in the
Configuration.
([#&open-telemetry#8203;28633](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28633))

- `spanmetricsconnector`: Add Events metric to span metrics connector
that adds list of event attributes as dimensions
([#&open-telemetry#8203;27451](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27451))

- `exceptionsconnector`: Add trace id and span id to generated logs from
exceptions when using exceptionsconnector.
([#&open-telemetry#8203;24407](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/24407))

- `processor/k8sattribute`: support adding labels and annotations from
node
([#&open-telemetry#8203;22620](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/22620))

- `windowseventlogreceiver`: Add parsing for Security and Execution
event fields.
([#&open-telemetry#8203;27810](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27810))

- `filelogreceiver`: Add the ability to order files by mtime, to only
read the most recently modified files
([#&open-telemetry#8203;27812](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27812))

- `wavefrontreceiver`: Wrap metrics receiver under carbon receiver
instead of using export function
([#&open-telemetry#8203;27248](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27248))

- `exporter/datadog`: Added the
"exporter.datadogexporter.DisableAPMStats" feature gate to disable APM
stats computation.
([#&open-telemetry#8203;28615](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28615))

- `pkg/ottl`: Add IsBool function into OTTL
([#&open-telemetry#8203;27897](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27897))

- `k8sclusterreceiver`: add k8s.node.condition metric
([#&open-telemetry#8203;27617](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27617))

- `kafka`: Expose resolve_canonical_bootstrap_servers_only
([#&open-telemetry#8203;26022](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26022))

- `mongodbatlasreceiver`: Enhanced collector logs to include more
information about the MongoDB Atlas API calls being made during logs
retrieval.
([#&open-telemetry#8203;28851](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28851))

- `datadogexporter`: Add support for host.cpu attributes.
([#&open-telemetry#8203;29156](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29156))

- `datadogexporter`: Add support for custom container tags via resource
attributes prefixed by `datadog.container.tag.*`.
([#&open-telemetry#8203;29156](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29156))

- `receiver/mongodbatlasreceiver`: emit resource attributes
"`mongodb_atlas.region.name`" and "`mongodb_atlas.provider.name`" on
metric scrape.
([#&open-telemetry#8203;28833](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28833))

- `pkg/golden`: Move the internal/coreinternal/golden folder to
pkg/golden
([#&open-telemetry#8203;28594](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28594))

- `processor/resourcedetection`: Add
`processor.resourcedetection.hostCPUModelAndFamilyAsString` feature gate
to change the type of `host.cpu.family` and `host.cpu.model.id`
attributes from `int` to `string`.
([#&open-telemetry#8203;29025](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29025))
    This feature gate will graduate to beta in the next release.

- `tailsamplingprocessor`: Optimize performance of tailsamplingprocessor
([#&open-telemetry#8203;27889](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27889))

- `redisreceiver`: include server.address and server.port resource
attributes
([#&open-telemetry#8203;22044](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/22044))

- `servicegraphprocessor, servicegraphconnector`: Add a config option to
periodically flush metrics, instead of flushing on every push.
([#&open-telemetry#8203;27679](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27679))

- `spanmetricsconnector`: Add exemplars to sum metric
([#&open-telemetry#8203;27451](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27451))

- `exporter/syslog`: send syslog messages in batches
([#&open-telemetry#8203;21244](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21244))
This changes the behavior of the Syslog exporter to send each batch of
Syslog messages in a single request (with messages separated by
newlines), instead of sending each message in a separate request and
closing the connection after each message.

- `cmd/telemetrygen`: Use exporter per worker for better metrics
throughput
([#&open-telemetry#8203;26709](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26709))

- `cmd/telemetrygen`: Add support for --otlp-http for telemetrygen logs
([#&open-telemetry#8203;18867](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/18867))

- `exporter/awss3exporter`: This feature allows role assumption for s3
exportation. It is especially useful on Kubernetes clusters that are
using IAM roles for service accounts
([#&open-telemetry#8203;28674](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28674))

##### 🧰 Bug fixes 🧰

- `lokiexporter`: The tenant attribute is now not automatically promoted
to a label.
([#&open-telemetry#8203;21045](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21045))
To add tenant attributes (resource/record) to labels, use the label
hints explicitly.

- `azuretranslator`: Allow numeric fields to use a String or Integer
representation in JSON.
([#&open-telemetry#8203;28650](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28650))

- `extension/zipkinencodingextension`: Fix bug when err is nil if
invalid protocol value is supplied.
([#&open-telemetry#8203;28686](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28686))

- `filelogreceiver`: Fix issue where counting number of logs emitted
could cause panic
([#&open-telemetry#8203;27469](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27469),
[#&open-telemetry#8203;29107](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29107))

- `lokireceiver`: Fix issue where counting number of logs emitted could
cause panic
([#&open-telemetry#8203;27469](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27469),
[#&open-telemetry#8203;29107](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29107))

- `kafkareceiver`: Fix issue where counting number of logs emitted could
cause panic
([#&open-telemetry#8203;27469](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27469),
[#&open-telemetry#8203;29107](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29107))

- `k8sobjectsreceiver`: Fix issue where counting number of logs emitted
could cause panic
([#&open-telemetry#8203;27469](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27469),
[#&open-telemetry#8203;29107](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29107))

- `fluentforwardreceiver`: Fix issue where counting number of logs
emitted could cause panic
([#&open-telemetry#8203;27469](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27469),
[#&open-telemetry#8203;29107](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29107))

- `otlpjsonfilereceiver`: Fix issue where counting number of logs
emitted could cause panic
([#&open-telemetry#8203;27469](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27469),
[#&open-telemetry#8203;29107](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29107))

- `datadogconnector`: Mark datadogconnector as `MutatesData` to prevent
data race
([#&open-telemetry#8203;29111](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29111))

- `azureeventhubreceiver`: Updated documentation around Azure Metric to
OTel mapping.
([#&open-telemetry#8203;28622](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28622))

- `receiver/hostmetrics`: Fix panic on load_scraper_windows shutdown
([#&open-telemetry#8203;28678](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28678))

- `apachesparkreceiver`: Replacing inaccurate units for the
spark.job.stage.active and spark.job.stage.result metrics for the Apache
Spark receiver.
([#&open-telemetry#8203;29104](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29104))

- `splunkhecreceiver`: Do not encode JSON response objects as string.
([#&open-telemetry#8203;27604](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27604))

- `processor/k8sattributes`: Set attributes from namespace/node labels
or annotations even if node/namespaces attribute are not set.
([#&open-telemetry#8203;28837](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28837))

- `datadogexporter`: Only extract DD container tags from resource
attributes. Previously, container tags were also extracted from span
attributes.
([#&open-telemetry#8203;29156](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29156))

- `datadogexporter`: Only add container tags in dedicated container tag
section. Previously, container tags were also added as span tags.
Container tags will now only be accessible via the span container tab,
and not as span tags.
([#&open-telemetry#8203;29156](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29156))

- `pkg/stanza`: Fix data-corruption/race-condition issue in udp async
(reuse of buffer); use buffer pool isntead.
([#&open-telemetry#8203;27613](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27613))

- `datadogexporter`: Fixes potential log records loss on a transient
network/connectivity error
([#&open-telemetry#8203;24550](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/24550))
The Datadog exporter threats network/connectivity errors (http client
doesn't receive a response) as permanent errors, which can lead to log
records loss. This change makes these errors retryable.

- `servicegraphprocessor, servicegraphconnector`: Measure latency in
seconds instead of milliseconds
([#&open-telemetry#8203;27488](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27488))
Measures latency in seconds instead of milliseconds, as the metric name
indicates.
    Previously, milliseconds was used.
This unit is still available via the feature gate
`processor.servicegraph.legacyLatencyUnitMs`.
    This is a breaking change.

- `sshcheckreceiver`: Use key_file instead of keyfile for the key in
config. Aligns project practice, code, and docs.
([#&open-telemetry#8203;27035](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27035))

- `zipkinreceiver`: Return BadRequest in case of permanent errors
([#&open-telemetry#8203;4335](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/4335))

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

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

##### 🛑 Breaking changes 🛑

- `k8sclusterreceiver`: Remove opencensus.resourcetype resource
attribute
([#&open-telemetry#8203;26487](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26487))

- `splunkhecexporter`: Remove `max_connections` configuration setting.
([#&open-telemetry#8203;27610](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27610))
    use max_idle_conns or max_idle_conns_per_host instead.

- `signalfxexporter`: Remove `max_connections` configuration setting.
([#&open-telemetry#8203;27610](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27610))
    use max_idle_conns or max_idle_conns_per_host instead.

##### 🚩 Deprecations 🚩

- `dockerstatsreceiver`: cpu.container.percent metric will be deprecated
in v0.79.0 in favor of container.cpu.utilization
([#&open-telemetry#8203;21807](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21807))
The metric `container.cpu.percentage` is now disabled by default and
will be removed in v0.88.0.
As a replacement, the following metric is now enabled by default:
`container.cpu.utilization`.
For details, see the
[docs](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/dockerstatsreceiver#transition-to-cpu-utilization-metric-name-aligned-with-opentelemetry-specification).

- `parquetexporter`: Remove the parquet exporter
([#&open-telemetry#8203;27284](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27284))

##### 🚀 New components 🚀

- `encoding/jsonlogencodingextension`: Add a new extension to support
JSON encoding (only logs)
([#&open-telemetry#8203;6272](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/6272))
- `honeycombmarkerexporter`: This component will export markers to be
consumed by the Honeycomb Markers API to highlight user events
([#&open-telemetry#8203;26653](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26653))
- `zipkinencodingextension`: Introduce zipkin encoding extension.
([#&open-telemetry#8203;6272](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/6272))

##### 💡 Enhancements 💡

- `datasetexporter`: Make export of resources and scopes more flexible
([#&open-telemetry#8203;27651](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27651),
[#&open-telemetry#8203;27649](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27649))

- `pkg/stanza`: Add option to run udp logs receiver (and stanza udp
input operator) concurrently to reduce data-loss during high-scale
scenarios
([#&open-telemetry#8203;27613](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27613))

- `receiver/prometheus`: Warn instead of failing when users rename using
metric_relabel_configs in the prometheus receiver
([#&open-telemetry#8203;5001](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/5001))

- `awscloudwatchlogsexporter/awsemfexporter`: Reduce noisy logs emitted
by CloudWatch Logs Pusher.
([#&open-telemetry#8203;27774](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27774))
The Collector logger will now write successful CloudWatch API writes at
the Debug level instead of Info level.

- `k8sobjectsreceiver`: Move k8sobjectsreceiver from Alpha stability to
Beta stability for logs.
([#&open-telemetry#8203;27635](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27635))

- `datadogconnector`: Allow datadogconnector to be used as a
traces-to-traces connector
([#&open-telemetry#8203;27846](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27846))

- `doubleconverter`: Adding a double converter into pkg/ottl
([#&open-telemetry#8203;22056](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/22056))

- `syslogreceiver`: validate protocol name
([#&open-telemetry#8203;27581](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27581))

- `elasticsearchexporter`: add missing scope info in span attributes
([#&open-telemetry#8203;27282](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27282))

- `entension/storage/filestorage`: Add support for setting bbolt fsync
option
([#&open-telemetry#8203;20266](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/20266))

- `filelogreceiver`: Add a new "top_n" option to specify the number of
files to track when using ordering criteria
([#&open-telemetry#8203;23788](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/23788))

- `azuredataexplorerexporter`: Added exporter helper config support for
Azure Data Explorer exporter
([#&open-telemetry#8203;24329](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/24329))

- `k8sclusterreceiver`: add optional k8s.pod.qos_class resource
attribute
([#&open-telemetry#8203;27483](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27483))

- `pkg/stanza`: Log warning, instead of error, when Windows Event Log
publisher metadata is not available and cache the successfully retrieved
ones.
([#&open-telemetry#8203;27658](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27658))

- `pkg/ottl`: Add optional Converter parameters to replacement Editors
([#&open-telemetry#8203;27235](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27235))
Functions to modify matched text during replacement can now be passed as
optional arguments to the following Editors:
    -   `replace_pattern`
    -   `replace_all_patterns`
    -   `replace_match`
    -   `replace_all_matches`

- `awscloudwatchlogsexporter`: Improve the performance of the
awscloudwatchlogsexporter
([#&open-telemetry#8203;26692](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26692))
Improve the performance by adding support to multiple consumers and
removing locks and limiters that are no longer
    necessary.

- `pkg/pdatatest`: support ignore timestamps in span comparisons for
pdatatest
([#&open-telemetry#8203;27688](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27688))

- `prometheusremotewriteexporter`: addition of `max_batch_size_bytes`
configurable parameter, to allow users to adjust it based on the
capabilities of their specific remote storage
([#&open-telemetry#8203;21911](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21911))

- `pkg/pdatatest`: support ignore span attribute value in span
comparisons for ptracetest
([#&open-telemetry#8203;27689](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27689))

- `pkg/pdatatest`: support ignore span ID in span comparisons for
ptracetest
([#&open-telemetry#8203;27685](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27685))

- `pkg/pdatatest`: support ignore trace ID in span comparisons for
ptracetest
([#&open-telemetry#8203;27687](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27687))

- `pkg/stanza`: When async is enabled for udp receiver, separate logic
into readers (only read logs from udp port and push to channel), and
processors (read logs from channel and process; decode, split, add
attributes, and push downstream), allowing to change concurrency level
for both readers and processors separately.
([#&open-telemetry#8203;27613](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27613))

- `signalfxexporter`: Add an option to control the dimension client
timeout
([#&open-telemetry#8203;27815](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27815))

- `signalfxexporter`: Add the build version to the user agent of the
SignalFx exporter
([#&open-telemetry#8203;16841](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/16841))

- `splunkentreceiver`: Users can now use auth settings and basicauth
extension to connect to their Splunk enterprise deployments
([#&open-telemetry#8203;27026](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27026))

##### 🧰 Bug fixes 🧰

- `datasetexporter`: Do not crash on NPE when any of the attributes
contains null value.
([#&open-telemetry#8203;27648](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27648))
- `syslog`: add integration tests and fix related bugs
([#&open-telemetry#8203;21245](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21245))
- `processor/resourcedetection`: Don't parse the field `cpuInfo.Model`
if it's blank.
([#&open-telemetry#8203;27678](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27678))
- `k8sclusterreceiver`: Change clusterquota and resourcequota metrics to
use {resource} unit
([#&open-telemetry#8203;10553](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/10553))
- `cmd/telemetrygen`: Fix `go install` for telemetrygen
([#&open-telemetry#8203;27855](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27855))
- `pkg/ottl`: Fix bug where named parameters needed a space after the
equal sign (`=`).
([#&open-telemetry#8203;28511](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28511))
- `filelogreceiver`: Fix issue where batching of files could result in
ignoring start_at setting.
([#&open-telemetry#8203;27773](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27773))
- `prometheusremotewrite`: Fix remote write exporter not respecting
retrySettings.enabled flag
([#&open-telemetry#8203;27592](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27592))
- `redactionprocessor`: Fix mask when multiple patterns exist
([#&open-telemetry#8203;27646](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27646))

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…ry#29477)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/pkg/sftp](https://togithub.com/pkg/sftp) | require | patch
| `v1.13.5` -> `v1.13.6` |

---

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

---

### Release Notes

<details>
<summary>pkg/sftp (github.com/pkg/sftp)</summary>

### [`v1.13.6`](https://togithub.com/pkg/sftp/releases/tag/v1.13.6)

[Compare
Source](https://togithub.com/pkg/sftp/compare/v1.13.5...v1.13.6)

\[[open-telemetryGH-499](https://togithub.com/pkg/sftp/issues/499)] writeToSequential:
improve tests for write errors
\[[open-telemetryGH-513](https://togithub.com/pkg/sftp/issues/513)] More context for
EOF during client setup
\[[open-telemetryGH-516](https://togithub.com/pkg/sftp/issues/516)]
RealPathFileLister: allow to return an error
\[[open-telemetryGH-525](https://togithub.com/pkg/sftp/issues/525)] Document the
weirdness of the reversal of arguments to SSH_FXP_SYMLINK
\[[open-telemetryGH-526](https://togithub.com/pkg/sftp/issues/526)] request server:
handle relative symlinks
\[[open-telemetryGH-528](https://togithub.com/pkg/sftp/issues/528)] Add support for
working directory in Server
\[[open-telemetryGH-533](https://togithub.com/pkg/sftp/issues/533)] CI: add CIFuzz
integration
\[[open-telemetryGH-537](https://togithub.com/pkg/sftp/issues/537)] Stop
ReadFromWithConcurrency sending more data than it needs to
\[[open-telemetryGH-545](https://togithub.com/pkg/sftp/issues/545)] refactor sshfx
encoding, fix link rot, go fmt
\[[open-telemetryGH-553](https://togithub.com/pkg/sftp/issues/553)] Marshal extended
attribute data if FileInfo supports it
\[[open-telemetryGH-554](https://togithub.com/pkg/sftp/issues/554)] Properly handle
io.EOF error conditions when reading

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…ector-contrib/internal/common to v0.89.0 (open-telemetry#29480)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/open-telemetry/opentelemetry-collector-contrib/internal/common](https://togithub.com/open-telemetry/opentelemetry-collector-contrib)
| require | minor | `v0.87.0` -> `v0.89.0` |

---

> [!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/internal/common)</summary>

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

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

##### 🛑 Breaking changes 🛑

- `pkg/stanza`: Improve parsing of Windows Event XML by handling
anonymous `Data` elements.
([#&open-telemetry#8203;21491](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21491))
This improves the contents of Windows log events for which the publisher
manifest is unavailable. Previously, anonymous `Data` elements were
ignored. This is a breaking change for users who were relying on the
previous data format.

- `processor/k8sattributes`: Graduate "k8sattr.rfc3339" feature gate to
Beta.
([#&open-telemetry#8203;28817](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28817))
Time format of `k8s.pod.start_time` attribute value migrated from
RFC3339:
    Before: 2023-07-10 12:34:39.740638 -0700 PDT m=+0.020184946
    After: 2023-07-10T12:39:53.112485-07:00
The feature gate can be temporary reverted back by adding
`--feature-gate=-k8sattr.rfc3339` to the command line.

- `filelogreceiver`: Change "Started watching file" log behavior
([#&open-telemetry#8203;28491](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28491))
Previously, every unique file path which was found by the receiver would
be remembered indefinitely.
This list was kept independently of the uniqueness / checkpointing
mechanism (which does not rely on the file path).
The purpose of this list was to allow us to emit a lot whenever a path
was seen for the first time.
This removes the separate list and relies instead on the same mechanism
as checkpointing. Now, a similar log is emitted
any time a file is found which is not currently checkpointed. Because
the checkpointing mechanism does not maintain history
indefintiely, it is now possible that a log will be emitted for the same
file path. This will happen when no file exists at
    the path for a period of time.

- `dockerstatsreceiver`: cpu.container.percent metric is removed in
favor of container.cpu.utilization
([#&open-telemetry#8203;21807](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21807))
The metric `container.cpu.percentage` is now removed.
`container.cpu.utilization` is enabled by default as a replacement.
For details, see the
[docs](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/dockerstatsreceiver#transition-to-cpu-utilization-metric-name-aligned-with-opentelemetry-specification).

- `encoding extensions`: Rename encoding extensions for consistency with
storage extensions
([#&open-telemetry#8203;24451](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/24451))
    -   `jaegerencoding` -> `jaeger_encoding`
    -   `otlpencoding` -> `otlp_encoding`
    -   `textencoding` -> `text_encoding`
    -   `zipkinencoding` -> `zipkin_encoding`

- `remoteobserverprocessor`: Rename remoteobserverprocessor to
remotetapprocessor
([#&open-telemetry#8203;27873](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27873))

- `collectdreceiver`: Stop using opencensus metrics, use the obsrecv
format
([#&open-telemetry#8203;25148](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/25148))

##### 🚩 Deprecations 🚩

- `datadogexporter`: Deprecate config `traces::peer_service_aggregation`
in favor of `traces::peer_tags_aggregation`
([#&open-telemetry#8203;29089](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29089))
- `postgresqlreceiver`: Deprecation of postgresql replication lag
metrics `postgresql.wal.lag` in favor of more precise
'postgresql.wal.delay'
([#&open-telemetry#8203;26714](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26714))

##### 🚀 New components 🚀

- `extension/opampextension`: Add a new extension that implements an
OpAMP agent for reporting the collector's health and effective
configuration.
([#&open-telemetry#8203;16462](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/16462))
- `sumologicprocessor`: add Sumo Logic Processor
([#&open-telemetry#8203;23946](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/23946))
move processor from
https://github.com/SumoLogic/sumologic-otel-collector/ repository
- `alertmanagerexporter`: Add new exporter for sending events as alerts
to Alertmanager
([#&open-telemetry#8203;23569](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/23569))
- `remotetapextension`: Add a new extension, remotetapextension to use
with the remoteobserverprocessor processors.
([#&open-telemetry#8203;19634](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/19634))
- `otlpencodingextension`: Introduce OTLP encoding extension
([#&open-telemetry#8203;6272](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/6272))
- `pkg/translator/azure`: Create a translator for Azure Resource Log
format
([#&open-telemetry#8203;18210](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/18210))

##### 💡 Enhancements 💡

- `awsxrayexporter`: Convert individual HTTP error events into
exceptions within subsegments for AWS SDK spans and strip AWS.SDK prefix
from remote aws service name
([#&open-telemetry#8203;27232](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27232))

- `azuremonitorexporter`: Added connection string support to the Azure
Monitor Exporter
([#&open-telemetry#8203;28853](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28853))
This enhancement simplifies the configuration process and aligns the
exporter with Azure Monitor's recommended practices.
The Connection String method allows the inclusion of various fields such
as the InstrumentationKey and IngestionEndpoint
within a single string, facilitating an easier and more integrated
setup.
While the traditional InstrumentationKey method remains supported for
backward compatibility, it will be phased out.
Users are encouraged to adopt the Connection String approach to ensure
future compatibility and to leverage the broader
    configuration options it enables.

- `opensearchexporter`: Add log exporting capability to the
opensearchexporter.
([#&open-telemetry#8203;23611](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/23611))

- `pdatatest`: Allow to compare metrics resource attributes or metric
attribute values by matching on a portion of the dimension value with a
regular expression.
([#&open-telemetry#8203;27690](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27690))
Use `MatchResourceAttributeValue("node_id", "cloud-node")` to match two
metrics with a resource attribute value that starts with "cloud-node".
Use `MatchMetricAttributeValue("hostname", "container-tomcat-",
"gauge.one", "sum.one")` to match metrics with the `hostname` attribute
starting with `container-tomcat-`.

- `processor/tailsampling`: adds optional upper bound duration for
sampling
([#&open-telemetry#8203;26115](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26115))

- `clickhouseexporter`: Add persistent storage support to clickhouse
exporter
([#&open-telemetry#8203;27653](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27653))

- `azuremonitorexporter`: Added documentation to describe how to use
with the AAD Auth Proxy and enable AAD based authentication.
([#&open-telemetry#8203;24451](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/24451))

- `azuremonitorexporter`: Extended Azure Monitor exporter to support
persistent queue. Default is for QueueSettings.Enabled to be false.
([#&open-telemetry#8203;25859](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/25859))

- `collectdreceiver`: Add support of confighttp.HTTPServerSettings
([#&open-telemetry#8203;28811](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28811))

- `collectdreceiver`: Promote collectdreceiver as beta component
([#&open-telemetry#8203;28658](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28658))

- `receiver/hostmetricsreceiver`: Added support for host's cpuinfo
frequnecies.
([#&open-telemetry#8203;27445](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27445))
In Linux the current frequency is populated using the values from
/proc/cpuinfo. An os specific implementation will be needed for Windows
and others.

- `datadogexporter`: Add a new traces config `trace_buffer` that
specifies the number of outgoing trace payloads to buffer before
dropping.
([#&open-telemetry#8203;28577](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28577))
If you start seeing log messages like `Payload in channel full. Dropped
1 payload.` in the datadog exporter, consider setting a higher
`trace_buffer` to avoid traces being dropped.

- `datadogexporter`: Add a new config `traces::peer_tags_aggregation`
that enables aggregation of peer related tags in Datadog exporter
([#&open-telemetry#8203;29089](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29089))

- `receiver/hostmetrics/scrapers/process`: add configuration option to
mute `error reading username for process`
([#&open-telemetry#8203;14311](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/14311),
[#&open-telemetry#8203;17187](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/17187))

- `syslogexporter`: Promote syslogexporter to alpha and add it to
otelcontribcol
([#&open-telemetry#8203;21242](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21242),
[#&open-telemetry#8203;21244](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21244),
[#&open-telemetry#8203;21245](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21245))

- `azureevenhubreceiver`: Allow the Consumer Group to be set in the
Configuration.
([#&open-telemetry#8203;28633](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28633))

- `spanmetricsconnector`: Add Events metric to span metrics connector
that adds list of event attributes as dimensions
([#&open-telemetry#8203;27451](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27451))

- `exceptionsconnector`: Add trace id and span id to generated logs from
exceptions when using exceptionsconnector.
([#&open-telemetry#8203;24407](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/24407))

- `processor/k8sattribute`: support adding labels and annotations from
node
([#&open-telemetry#8203;22620](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/22620))

- `windowseventlogreceiver`: Add parsing for Security and Execution
event fields.
([#&open-telemetry#8203;27810](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27810))

- `filelogreceiver`: Add the ability to order files by mtime, to only
read the most recently modified files
([#&open-telemetry#8203;27812](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27812))

- `wavefrontreceiver`: Wrap metrics receiver under carbon receiver
instead of using export function
([#&open-telemetry#8203;27248](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27248))

- `exporter/datadog`: Added the
"exporter.datadogexporter.DisableAPMStats" feature gate to disable APM
stats computation.
([#&open-telemetry#8203;28615](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28615))

- `pkg/ottl`: Add IsBool function into OTTL
([#&open-telemetry#8203;27897](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27897))

- `k8sclusterreceiver`: add k8s.node.condition metric
([#&open-telemetry#8203;27617](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27617))

- `kafka`: Expose resolve_canonical_bootstrap_servers_only
([#&open-telemetry#8203;26022](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26022))

- `mongodbatlasreceiver`: Enhanced collector logs to include more
information about the MongoDB Atlas API calls being made during logs
retrieval.
([#&open-telemetry#8203;28851](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28851))

- `datadogexporter`: Add support for host.cpu attributes.
([#&open-telemetry#8203;29156](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29156))

- `datadogexporter`: Add support for custom container tags via resource
attributes prefixed by `datadog.container.tag.*`.
([#&open-telemetry#8203;29156](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29156))

- `receiver/mongodbatlasreceiver`: emit resource attributes
"`mongodb_atlas.region.name`" and "`mongodb_atlas.provider.name`" on
metric scrape.
([#&open-telemetry#8203;28833](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28833))

- `pkg/golden`: Move the internal/coreinternal/golden folder to
pkg/golden
([#&open-telemetry#8203;28594](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28594))

- `processor/resourcedetection`: Add
`processor.resourcedetection.hostCPUModelAndFamilyAsString` feature gate
to change the type of `host.cpu.family` and `host.cpu.model.id`
attributes from `int` to `string`.
([#&open-telemetry#8203;29025](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29025))
    This feature gate will graduate to beta in the next release.

- `tailsamplingprocessor`: Optimize performance of tailsamplingprocessor
([#&open-telemetry#8203;27889](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27889))

- `redisreceiver`: include server.address and server.port resource
attributes
([#&open-telemetry#8203;22044](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/22044))

- `servicegraphprocessor, servicegraphconnector`: Add a config option to
periodically flush metrics, instead of flushing on every push.
([#&open-telemetry#8203;27679](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27679))

- `spanmetricsconnector`: Add exemplars to sum metric
([#&open-telemetry#8203;27451](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27451))

- `exporter/syslog`: send syslog messages in batches
([#&open-telemetry#8203;21244](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21244))
This changes the behavior of the Syslog exporter to send each batch of
Syslog messages in a single request (with messages separated by
newlines), instead of sending each message in a separate request and
closing the connection after each message.

- `cmd/telemetrygen`: Use exporter per worker for better metrics
throughput
([#&open-telemetry#8203;26709](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26709))

- `cmd/telemetrygen`: Add support for --otlp-http for telemetrygen logs
([#&open-telemetry#8203;18867](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/18867))

- `exporter/awss3exporter`: This feature allows role assumption for s3
exportation. It is especially useful on Kubernetes clusters that are
using IAM roles for service accounts
([#&open-telemetry#8203;28674](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28674))

##### 🧰 Bug fixes 🧰

- `lokiexporter`: The tenant attribute is now not automatically promoted
to a label.
([#&open-telemetry#8203;21045](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21045))
To add tenant attributes (resource/record) to labels, use the label
hints explicitly.

- `azuretranslator`: Allow numeric fields to use a String or Integer
representation in JSON.
([#&open-telemetry#8203;28650](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28650))

- `extension/zipkinencodingextension`: Fix bug when err is nil if
invalid protocol value is supplied.
([#&open-telemetry#8203;28686](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28686))

- `filelogreceiver`: Fix issue where counting number of logs emitted
could cause panic
([#&open-telemetry#8203;27469](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27469),
[#&open-telemetry#8203;29107](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29107))

- `lokireceiver`: Fix issue where counting number of logs emitted could
cause panic
([#&open-telemetry#8203;27469](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27469),
[#&open-telemetry#8203;29107](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29107))

- `kafkareceiver`: Fix issue where counting number of logs emitted could
cause panic
([#&open-telemetry#8203;27469](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27469),
[#&open-telemetry#8203;29107](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29107))

- `k8sobjectsreceiver`: Fix issue where counting number of logs emitted
could cause panic
([#&open-telemetry#8203;27469](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27469),
[#&open-telemetry#8203;29107](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29107))

- `fluentforwardreceiver`: Fix issue where counting number of logs
emitted could cause panic
([#&open-telemetry#8203;27469](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27469),
[#&open-telemetry#8203;29107](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29107))

- `otlpjsonfilereceiver`: Fix issue where counting number of logs
emitted could cause panic
([#&open-telemetry#8203;27469](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27469),
[#&open-telemetry#8203;29107](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29107))

- `datadogconnector`: Mark datadogconnector as `MutatesData` to prevent
data race
([#&open-telemetry#8203;29111](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29111))

- `azureeventhubreceiver`: Updated documentation around Azure Metric to
OTel mapping.
([#&open-telemetry#8203;28622](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28622))

- `receiver/hostmetrics`: Fix panic on load_scraper_windows shutdown
([#&open-telemetry#8203;28678](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28678))

- `apachesparkreceiver`: Replacing inaccurate units for the
spark.job.stage.active and spark.job.stage.result metrics for the Apache
Spark receiver.
([#&open-telemetry#8203;29104](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29104))

- `splunkhecreceiver`: Do not encode JSON response objects as string.
([#&open-telemetry#8203;27604](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27604))

- `processor/k8sattributes`: Set attributes from namespace/node labels
or annotations even if node/namespaces attribute are not set.
([#&open-telemetry#8203;28837](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28837))

- `datadogexporter`: Only extract DD container tags from resource
attributes. Previously, container tags were also extracted from span
attributes.
([#&open-telemetry#8203;29156](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29156))

- `datadogexporter`: Only add container tags in dedicated container tag
section. Previously, container tags were also added as span tags.
Container tags will now only be accessible via the span container tab,
and not as span tags.
([#&open-telemetry#8203;29156](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/29156))

- `pkg/stanza`: Fix data-corruption/race-condition issue in udp async
(reuse of buffer); use buffer pool isntead.
([#&open-telemetry#8203;27613](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27613))

- `datadogexporter`: Fixes potential log records loss on a transient
network/connectivity error
([#&open-telemetry#8203;24550](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/24550))
The Datadog exporter threats network/connectivity errors (http client
doesn't receive a response) as permanent errors, which can lead to log
records loss. This change makes these errors retryable.

- `servicegraphprocessor, servicegraphconnector`: Measure latency in
seconds instead of milliseconds
([#&open-telemetry#8203;27488](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27488))
Measures latency in seconds instead of milliseconds, as the metric name
indicates.
    Previously, milliseconds was used.
This unit is still available via the feature gate
`processor.servicegraph.legacyLatencyUnitMs`.
    This is a breaking change.

- `sshcheckreceiver`: Use key_file instead of keyfile for the key in
config. Aligns project practice, code, and docs.
([#&open-telemetry#8203;27035](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27035))

- `zipkinreceiver`: Return BadRequest in case of permanent errors
([#&open-telemetry#8203;4335](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/4335))

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

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

##### 🛑 Breaking changes 🛑

- `k8sclusterreceiver`: Remove opencensus.resourcetype resource
attribute
([#&open-telemetry#8203;26487](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26487))

- `splunkhecexporter`: Remove `max_connections` configuration setting.
([#&open-telemetry#8203;27610](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27610))
    use max_idle_conns or max_idle_conns_per_host instead.

- `signalfxexporter`: Remove `max_connections` configuration setting.
([#&open-telemetry#8203;27610](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27610))
    use max_idle_conns or max_idle_conns_per_host instead.

##### 🚩 Deprecations 🚩

- `dockerstatsreceiver`: cpu.container.percent metric will be deprecated
in v0.79.0 in favor of container.cpu.utilization
([#&open-telemetry#8203;21807](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21807))
The metric `container.cpu.percentage` is now disabled by default and
will be removed in v0.88.0.
As a replacement, the following metric is now enabled by default:
`container.cpu.utilization`.
For details, see the
[docs](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/dockerstatsreceiver#transition-to-cpu-utilization-metric-name-aligned-with-opentelemetry-specification).

- `parquetexporter`: Remove the parquet exporter
([#&open-telemetry#8203;27284](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27284))

##### 🚀 New components 🚀

- `encoding/jsonlogencodingextension`: Add a new extension to support
JSON encoding (only logs)
([#&open-telemetry#8203;6272](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/6272))
- `honeycombmarkerexporter`: This component will export markers to be
consumed by the Honeycomb Markers API to highlight user events
([#&open-telemetry#8203;26653](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26653))
- `zipkinencodingextension`: Introduce zipkin encoding extension.
([#&open-telemetry#8203;6272](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/6272))

##### 💡 Enhancements 💡

- `datasetexporter`: Make export of resources and scopes more flexible
([#&open-telemetry#8203;27651](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27651),
[#&open-telemetry#8203;27649](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27649))

- `pkg/stanza`: Add option to run udp logs receiver (and stanza udp
input operator) concurrently to reduce data-loss during high-scale
scenarios
([#&open-telemetry#8203;27613](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27613))

- `receiver/prometheus`: Warn instead of failing when users rename using
metric_relabel_configs in the prometheus receiver
([#&open-telemetry#8203;5001](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/5001))

- `awscloudwatchlogsexporter/awsemfexporter`: Reduce noisy logs emitted
by CloudWatch Logs Pusher.
([#&open-telemetry#8203;27774](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27774))
The Collector logger will now write successful CloudWatch API writes at
the Debug level instead of Info level.

- `k8sobjectsreceiver`: Move k8sobjectsreceiver from Alpha stability to
Beta stability for logs.
([#&open-telemetry#8203;27635](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27635))

- `datadogconnector`: Allow datadogconnector to be used as a
traces-to-traces connector
([#&open-telemetry#8203;27846](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27846))

- `doubleconverter`: Adding a double converter into pkg/ottl
([#&open-telemetry#8203;22056](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/22056))

- `syslogreceiver`: validate protocol name
([#&open-telemetry#8203;27581](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27581))

- `elasticsearchexporter`: add missing scope info in span attributes
([#&open-telemetry#8203;27282](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27282))

- `entension/storage/filestorage`: Add support for setting bbolt fsync
option
([#&open-telemetry#8203;20266](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/20266))

- `filelogreceiver`: Add a new "top_n" option to specify the number of
files to track when using ordering criteria
([#&open-telemetry#8203;23788](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/23788))

- `azuredataexplorerexporter`: Added exporter helper config support for
Azure Data Explorer exporter
([#&open-telemetry#8203;24329](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/24329))

- `k8sclusterreceiver`: add optional k8s.pod.qos_class resource
attribute
([#&open-telemetry#8203;27483](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27483))

- `pkg/stanza`: Log warning, instead of error, when Windows Event Log
publisher metadata is not available and cache the successfully retrieved
ones.
([#&open-telemetry#8203;27658](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27658))

- `pkg/ottl`: Add optional Converter parameters to replacement Editors
([#&open-telemetry#8203;27235](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27235))
Functions to modify matched text during replacement can now be passed as
optional arguments to the following Editors:
    -   `replace_pattern`
    -   `replace_all_patterns`
    -   `replace_match`
    -   `replace_all_matches`

- `awscloudwatchlogsexporter`: Improve the performance of the
awscloudwatchlogsexporter
([#&open-telemetry#8203;26692](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/26692))
Improve the performance by adding support to multiple consumers and
removing locks and limiters that are no longer
    necessary.

- `pkg/pdatatest`: support ignore timestamps in span comparisons for
pdatatest
([#&open-telemetry#8203;27688](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27688))

- `prometheusremotewriteexporter`: addition of `max_batch_size_bytes`
configurable parameter, to allow users to adjust it based on the
capabilities of their specific remote storage
([#&open-telemetry#8203;21911](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21911))

- `pkg/pdatatest`: support ignore span attribute value in span
comparisons for ptracetest
([#&open-telemetry#8203;27689](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27689))

- `pkg/pdatatest`: support ignore span ID in span comparisons for
ptracetest
([#&open-telemetry#8203;27685](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27685))

- `pkg/pdatatest`: support ignore trace ID in span comparisons for
ptracetest
([#&open-telemetry#8203;27687](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27687))

- `pkg/stanza`: When async is enabled for udp receiver, separate logic
into readers (only read logs from udp port and push to channel), and
processors (read logs from channel and process; decode, split, add
attributes, and push downstream), allowing to change concurrency level
for both readers and processors separately.
([#&open-telemetry#8203;27613](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27613))

- `signalfxexporter`: Add an option to control the dimension client
timeout
([#&open-telemetry#8203;27815](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27815))

- `signalfxexporter`: Add the build version to the user agent of the
SignalFx exporter
([#&open-telemetry#8203;16841](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/16841))

- `splunkentreceiver`: Users can now use auth settings and basicauth
extension to connect to their Splunk enterprise deployments
([#&open-telemetry#8203;27026](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27026))

##### 🧰 Bug fixes 🧰

- `datasetexporter`: Do not crash on NPE when any of the attributes
contains null value.
([#&open-telemetry#8203;27648](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27648))
- `syslog`: add integration tests and fix related bugs
([#&open-telemetry#8203;21245](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/21245))
- `processor/resourcedetection`: Don't parse the field `cpuInfo.Model`
if it's blank.
([#&open-telemetry#8203;27678](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27678))
- `k8sclusterreceiver`: Change clusterquota and resourcequota metrics to
use {resource} unit
([#&open-telemetry#8203;10553](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/10553))
- `cmd/telemetrygen`: Fix `go install` for telemetrygen
([#&open-telemetry#8203;27855](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27855))
- `pkg/ottl`: Fix bug where named parameters needed a space after the
equal sign (`=`).
([#&open-telemetry#8203;28511](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/28511))
- `filelogreceiver`: Fix issue where batching of files could result in
ignoring start_at setting.
([#&open-telemetry#8203;27773](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27773))
- `prometheusremotewrite`: Fix remote write exporter not respecting
retrySettings.enabled flag
([#&open-telemetry#8203;27592](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27592))
- `redactionprocessor`: Fix mask when multiple patterns exist
([#&open-telemetry#8203;27646](https://togithub.com/open-telemetry/opentelemetry-collector-contrib/issues/27646))

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…etry#29481)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/gocql/gocql](https://togithub.com/gocql/gocql) | require |
minor | `v1.3.1` -> `v1.6.0` |

---

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

---

### Release Notes

<details>
<summary>gocql/gocql (github.com/gocql/gocql)</summary>

### [`v1.6.0`](https://togithub.com/gocql/gocql/releases/tag/v1.6.0)

[Compare
Source](https://togithub.com/gocql/gocql/compare/v1.5.2...v1.6.0)

##### Added

- Added the InstaclustrPasswordAuthenticator to the list of default
approved authenticators.
([#&open-telemetry#8203;1711](https://togithub.com/gocql/gocql/issues/1711))
- Added the `com.scylladb.auth.SaslauthdAuthenticator` and
`com.scylladb.auth.TransitionalAuthenticator`
to the list of default approved authenticators.
([#&open-telemetry#8203;1712](https://togithub.com/gocql/gocql/issues/1712))
- Added transferring Keyspace and Table names to the Query from the
prepared response and updating
information about that every time this information is received.
([#&open-telemetry#8203;1714](https://togithub.com/gocql/gocql/issues/1714))

##### Changed

- Tracer created with NewTraceWriter now includes the thread information
from trace events in the output.
([#&open-telemetry#8203;1716](https://togithub.com/gocql/gocql/issues/1716))
- Increased default timeouts so that they are higher than Cassandra
default timeouts.
This should help prevent issues where a default configuration overloads
a server using default timeouts
during retries.
([#&open-telemetry#8203;1701](https://togithub.com/gocql/gocql/issues/1701),
[#&open-telemetry#8203;1719](https://togithub.com/gocql/gocql/issues/1719))

### [`v1.5.2`](https://togithub.com/gocql/gocql/releases/tag/v1.5.2)

[Compare
Source](https://togithub.com/gocql/gocql/compare/v1.5.1...v1.5.2)

Same as v1.5.0 (GitHub was not able to verify signature with embedded
cleartext gpg message, even with armor lines prefixed)

    -----BEGIN PGP SIGNED MESSAGE-----
    Hash: SHA256

    2023-06-12:
Switching signing key used for github.com/gocql/gocql tags (since
v1.5.0)
    from GPG key ID: E0C5EC9218CB255D
    to SSH key with the following fingerprint:
    SHA256:TcKxeY58a0HRfycY4dCuqMF23FrNyEcclOdVzUI9BBI
    You can verify it with
[email protected] namespaces="git" ssh-ed25519
AAAAC3NzaC1lZDI1NTE5AAAAIN8Cnim2/FWQqDJmhidmXK/9VNO64rLfVJrvZqKaLqUl
    in your gpg.ssh.allowedSignersFile
    -----BEGIN PGP SIGNATURE-----

    iQIzBAEBCAAdFiEEW7CgRMsA2lq5yf6v4MXskhjLJV0FAmSHOcYACgkQ4MXskhjL
    JV2IXhAAye6kQhLwiiCag6bHUKIbKxM0TQHiOZf7aRKYlU2s0aWcsOXMeS6S9pvC
    cJqmjBdhDZx569bPrgjAy9+jMoe+rNBR5Cr8dcJUk31cKUTjm/7PsKfiCxfDrbnm
    ARDY2Z3vdGJC39mvBjG16UurzAPlRnP66jzyWYaXBiFBJJGWkP1+m+PNG4eF9ggo
    6W89MEeK6ZpLCxI0URq2RyB5JEgGkr1Gb9UB4/70euiTjUxeRjS+RHjosGREC0nG
    MxfpHND/Z+gOhHXCYt87zrF7N7JWIFU3+4vOj/th8MvMGRYaDzOAKT7MQmc/wc3A
    drBA5G/adltjNw9aWTRQGNV69jhaoaIkZfv4fy+AvPDz41iGOQD9Nulw8ujkocUC
    8zr4OxPhc0LIX1LtqwA2ahYfJABXnC7ObzqZLyXsE0sW5yvWpPNlF+Bj/slAdO+6
    d+4uxGs8dd3N/bOihFL2XZoeOStF6ehT5KIFsbr885FUueu6iRgZYPalfv/aWe95
    VIh97ikNsfgFH3mO0ZTGP9tnjSCbGIwG2Oh3+0dj5J4tZU1ihJRKiHJJNQirG1xK
    jMdu9EXOEPFK4CPwaXZgHpTy38cFF2MOxHbsrxErCuWJY8JxRpqlJeOyx0F+eTR4
    NGQSrMKvxfKd/F192UznSUSfflRTrQT7stUOhZk3Lc4YcCSiDEk=
    =em6i
    -----END PGP SIGNATURE-----

### [`v1.5.1`](https://togithub.com/gocql/gocql/releases/tag/v1.5.1)

[Compare
Source](https://togithub.com/gocql/gocql/compare/v1.5.0...v1.5.1)

Same as v1.5.0 (GitHub was not able to verify signature with embedded
cleartext gpg message)

    -----BEGIN PGP SIGNED MESSAGE-----
    Hash: SHA256

    2023-06-12:
Switching signing key used for github.com/gocql/gocql tags (since
v1.5.0)
    from GPG key ID: E0C5EC9218CB255D
    to SSH key with the following fingerprint:
    SHA256:TcKxeY58a0HRfycY4dCuqMF23FrNyEcclOdVzUI9BBI
    You can verify it with
[email protected] namespaces="git" ssh-ed25519
AAAAC3NzaC1lZDI1NTE5AAAAIN8Cnim2/FWQqDJmhidmXK/9VNO64rLfVJrvZqKaLqUl
    in your gpg.ssh.allowedSignersFile
    -----BEGIN PGP SIGNATURE-----

    iQIzBAEBCAAdFiEEW7CgRMsA2lq5yf6v4MXskhjLJV0FAmSHOcYACgkQ4MXskhjL
    JV2IXhAAye6kQhLwiiCag6bHUKIbKxM0TQHiOZf7aRKYlU2s0aWcsOXMeS6S9pvC
    cJqmjBdhDZx569bPrgjAy9+jMoe+rNBR5Cr8dcJUk31cKUTjm/7PsKfiCxfDrbnm
    ARDY2Z3vdGJC39mvBjG16UurzAPlRnP66jzyWYaXBiFBJJGWkP1+m+PNG4eF9ggo
    6W89MEeK6ZpLCxI0URq2RyB5JEgGkr1Gb9UB4/70euiTjUxeRjS+RHjosGREC0nG
    MxfpHND/Z+gOhHXCYt87zrF7N7JWIFU3+4vOj/th8MvMGRYaDzOAKT7MQmc/wc3A
    drBA5G/adltjNw9aWTRQGNV69jhaoaIkZfv4fy+AvPDz41iGOQD9Nulw8ujkocUC
    8zr4OxPhc0LIX1LtqwA2ahYfJABXnC7ObzqZLyXsE0sW5yvWpPNlF+Bj/slAdO+6
    d+4uxGs8dd3N/bOihFL2XZoeOStF6ehT5KIFsbr885FUueu6iRgZYPalfv/aWe95
    VIh97ikNsfgFH3mO0ZTGP9tnjSCbGIwG2Oh3+0dj5J4tZU1ihJRKiHJJNQirG1xK
    jMdu9EXOEPFK4CPwaXZgHpTy38cFF2MOxHbsrxErCuWJY8JxRpqlJeOyx0F+eTR4
    NGQSrMKvxfKd/F192UznSUSfflRTrQT7stUOhZk3Lc4YcCSiDEk=
    =em6i
    -----END PGP SIGNATURE-----

### [`v1.5.0`](https://togithub.com/gocql/gocql/releases/tag/v1.5.0)

[Compare
Source](https://togithub.com/gocql/gocql/compare/v1.4.0...v1.5.0)

##### Added

- gocql now advertises the driver name and version in the STARTUP
message to the server.
    The values are taken from the Go module's path and version
(or from the replacement module, if used).
([#&open-telemetry#8203;1702](https://togithub.com/gocql/gocql/issues/1702))
That allows the server to track which fork of the driver is being used.
-   Query.Values() to retrieve the values bound to the Query.
This makes writing wrappers around Query easier.
([#&open-telemetry#8203;1700](https://togithub.com/gocql/gocql/issues/1700))

##### Fixed

- Potential panic on deserialization
([#&open-telemetry#8203;1695](https://togithub.com/gocql/gocql/issues/1695))
- Unmarshalling of dates outside of `[1677-09-22, 2262-04-11]` range.
([#&open-telemetry#8203;1692](https://togithub.com/gocql/gocql/issues/1692))

### [`v1.4.0`](https://togithub.com/gocql/gocql/releases/tag/v1.4.0)

[Compare
Source](https://togithub.com/gocql/gocql/compare/v1.3.2...v1.4.0)

##### Changed

- gocql now refreshes the entire ring when it receives a topology change
event and
    when control connection is re-connected.
This simplifies code managing ring state.
([#&open-telemetry#8203;1680](https://togithub.com/gocql/gocql/issues/1680))
- Supported versions of Cassandra that we test against are now 4.0.x and
4.1.x. ([#&open-telemetry#8203;1685](https://togithub.com/gocql/gocql/issues/1685))
- Default HostDialer now uses already-resolved connect address instead
of hostname when establishing TCP connections
([#&open-telemetry#8203;1683](https://togithub.com/gocql/gocql/issues/1683)).

##### Fixed

- Deadlock in Session.Close().
([#&open-telemetry#8203;1688](https://togithub.com/gocql/gocql/issues/1688))
- Race between Query.Release() and speculative executions
([#&open-telemetry#8203;1684](https://togithub.com/gocql/gocql/issues/1684))
- Missed ring update during control connection reconnection
([#&open-telemetry#8203;1680](https://togithub.com/gocql/gocql/issues/1680))

### [`v1.3.2`](https://togithub.com/gocql/gocql/releases/tag/v1.3.2)

[Compare
Source](https://togithub.com/gocql/gocql/compare/v1.3.1...v1.3.2)

##### Changed

- Supported versions of Go that we test against are now Go 1.19 and Go
1.20.

##### Fixed

- Node event handling now processes topology events before status
events.
This fixes some cases where new nodes were missed.
([#&open-telemetry#8203;1682](https://togithub.com/gocql/gocql/issues/1682))
- Learning a new IP address for an existing node (identified by host ID)
now triggers replacement of that host.
This fixes some Kubernetes reconnection failures.
([#&open-telemetry#8203;1682](https://togithub.com/gocql/gocql/issues/1682))
-   Refresh ring when processing a node UP event for an unknown host.
This fixes some cases where new nodes were missed.
([#&open-telemetry#8203;1669](https://togithub.com/gocql/gocql/issues/1669))

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…lemetry#29482)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/gosnmp/gosnmp](https://togithub.com/gosnmp/gosnmp) |
require | minor | `v1.35.0` -> `v1.36.1` |

---

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

---

### Release Notes

<details>
<summary>gosnmp/gosnmp (github.com/gosnmp/gosnmp)</summary>

###
[`v1.36.1`](https://togithub.com/gosnmp/gosnmp/blob/HEAD/CHANGELOG.md#v1361)

[Compare
Source](https://togithub.com/gosnmp/gosnmp/compare/v1.36.0...v1.36.1)

- \[BUGFIX] address panics, add tests, fuzzing
[#&open-telemetry#8203;443](https://togithub.com/gosnmp/gosnmp/issues/443)

###
[`v1.36.0`](https://togithub.com/gosnmp/gosnmp/blob/HEAD/CHANGELOG.md#v1360)

[Compare
Source](https://togithub.com/gosnmp/gosnmp/compare/v1.35.0...v1.36.0)

This release now requires Go 1.20 or higher.

- \[ENHANCEMENT] Allow sending v1 traps that have no varbinds
[#&open-telemetry#8203;426](https://togithub.com/gosnmp/gosnmp/issues/426)
- \[BUGFIX] Fix getBulk SnmpPacket MaxRepetitions value
[#&open-telemetry#8203;413](https://togithub.com/gosnmp/gosnmp/issues/413)
- \[BUGFIX] Refactor security logger
[#&open-telemetry#8203;422](https://togithub.com/gosnmp/gosnmp/issues/422)
- \[BUGFIX] Add privacy passphrase in extendKeyBlumenthal cacheKey call
[#&open-telemetry#8203;425](https://togithub.com/gosnmp/gosnmp/issues/425)
- \[BUGFIX] unmarshal: fix panic from reading beyond slice
[#&open-telemetry#8203;441](https://togithub.com/gosnmp/gosnmp/issues/441)

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
[![Mend Renovate logo
banner](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/monitor/armmonitor](https://togithub.com/Azure/azure-sdk-for-go)
| require | minor | `v0.10.2` -> `v0.11.0` |
|
[github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources](https://togithub.com/Azure/azure-sdk-for-go)
| require | minor | `v1.1.1` -> `v1.2.0` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…metry#29484)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/spf13/viper](https://togithub.com/spf13/viper) | require |
minor | `v1.16.0` -> `v1.17.0` |

---

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

---

### Release Notes

<details>
<summary>spf13/viper (github.com/spf13/viper)</summary>

### [`v1.17.0`](https://togithub.com/spf13/viper/releases/tag/v1.17.0)

[Compare
Source](https://togithub.com/spf13/viper/compare/v1.16.0...v1.17.0)

#### Major changes

Highlighting some of the changes for better visibility.

Please share your feedback in the Discussion forum. Thanks! ❤️

##### Minimum Go version: 1.19

Viper now requires Go 1.19

This change ensures we can stay up to date with modern practices and
dependencies.

##### `log/slog` support **\[BREAKING]**

Viper [v1.11.0](https://togithub.com/spf13/viper/releases/tag/v1.11.0)
added an experimental `Logger` interface to allow custom implementations
(besides
[jwalterweatherman](https://togithub.com/spf13/jwalterweatherman)).

In addition, it also exposed an experimental `WithLogger` function
allowing to set a custom logger.

This release deprecates that interface in favor of
[log/slog](https://pkg.go.dev/log/slog) released in Go 1.21.

> \[!WARNING]
> `WithLogger` accepts an
[\*slog.Logger](https://pkg.go.dev/log/slog#Logger) from now on.

To preserve backwards compatibility with older Go versions, prior to Go
1.21 Viper accepts a
[\*golang.org/x/exp/slog.Logger](https://pkg.go.dev/golang.org/x/exp/slog#Logger).

The experimental flag is removed.

##### New finder implementation **\[BREAKING]**

As of this release, Viper uses a new library to look for files, called
[locafero](https://togithub.com/sagikazarmark/locafero).

The new library is better covered by tests and has been built from
scratch as a general purpose file finder library.

The implementation is experimental and is hidden behind a `finder` build
tag.

> \[!WARNING]
> The `io/fs` based implementation (that used to be hidden behind a
`finder` build tag) has been removed.

#### What's Changed

##### Exciting New Features 🎉

- Add NATS support by [@&open-telemetry#8203;hooksie1](https://togithub.com/hooksie1)
in
[https://github.com/spf13/viper/pull/1590](https://togithub.com/spf13/viper/pull/1590)
- Add slog support by
[@&open-telemetry#8203;sagikazarmark](https://togithub.com/sagikazarmark) in
[https://github.com/spf13/viper/pull/1627](https://togithub.com/spf13/viper/pull/1627)

##### Enhancements 🚀

- chore: add local development environment using nix by
[@&open-telemetry#8203;sagikazarmark](https://togithub.com/sagikazarmark) in
[https://github.com/spf13/viper/pull/1572](https://togithub.com/spf13/viper/pull/1572)
- feat: add func GetEnvPrefix by
[@&open-telemetry#8203;baruchiro](https://togithub.com/baruchiro) in
[https://github.com/spf13/viper/pull/1565](https://togithub.com/spf13/viper/pull/1565)
- Improve dev env by
[@&open-telemetry#8203;sagikazarmark](https://togithub.com/sagikazarmark) in
[https://github.com/spf13/viper/pull/1575](https://togithub.com/spf13/viper/pull/1575)
- fix: code optimization by
[@&open-telemetry#8203;testwill](https://togithub.com/testwill) in
[https://github.com/spf13/viper/pull/1557](https://togithub.com/spf13/viper/pull/1557)
- test: remove not needed testutil.Setenv by
[@&open-telemetry#8203;alexandear](https://togithub.com/alexandear) in
[https://github.com/spf13/viper/pull/1610](https://togithub.com/spf13/viper/pull/1610)
- new finder library based on afero by
[@&open-telemetry#8203;sagikazarmark](https://togithub.com/sagikazarmark) in
[https://github.com/spf13/viper/pull/1625](https://togithub.com/spf13/viper/pull/1625)
- refactor: make use of `strings.Cut` by
[@&open-telemetry#8203;scop](https://togithub.com/scop) in
[https://github.com/spf13/viper/pull/1650](https://togithub.com/spf13/viper/pull/1650)

##### Breaking Changes 🛠

- feat: drop support for Go 1.17 by
[@&open-telemetry#8203;sagikazarmark](https://togithub.com/sagikazarmark) in
[https://github.com/spf13/viper/pull/1574](https://togithub.com/spf13/viper/pull/1574)

##### Dependency Updates ⬆️

- build(deps): bump mheap/github-action-required-labels from 4 to 5 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1563](https://togithub.com/spf13/viper/pull/1563)
- build(deps): bump github.com/stretchr/testify from 1.8.3 to 1.8.4 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1558](https://togithub.com/spf13/viper/pull/1558)
- build(deps): bump cachix/install-nix-action from 21 to 22 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1573](https://togithub.com/spf13/viper/pull/1573)
- build(deps): bump github.com/pelletier/go-toml/v2 from 2.0.8 to 2.0.9
by [@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1586](https://togithub.com/spf13/viper/pull/1586)
- chore: upgrade crypt by
[@&open-telemetry#8203;sagikazarmark](https://togithub.com/sagikazarmark) in
[https://github.com/spf13/viper/pull/1589](https://togithub.com/spf13/viper/pull/1589)
- build(deps): bump actions/checkout from 3.5.3 to 4.0.0 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1616](https://togithub.com/spf13/viper/pull/1616)
- build(deps): bump github/codeql-action from 2.21.2 to 2.21.5 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1615](https://togithub.com/spf13/viper/pull/1615)
- build(deps): bump github.com/pelletier/go-toml/v2 from 2.0.9 to 2.1.0
by [@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1614](https://togithub.com/spf13/viper/pull/1614)
- build(deps): bump actions/dependency-review-action from 3.0.6 to 3.0.8
by [@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1605](https://togithub.com/spf13/viper/pull/1605)
- build(deps): bump golangci/golangci-lint-action from 3.6.0 to 3.7.0 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1604](https://togithub.com/spf13/viper/pull/1604)
- build(deps): bump actions/setup-go from 4.0.1 to 4.1.0 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1593](https://togithub.com/spf13/viper/pull/1593)
- build(deps): bump github.com/subosito/gotenv from 1.4.2 to 1.6.0 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1603](https://togithub.com/spf13/viper/pull/1603)
- build(deps): bump cachix/install-nix-action from 22 to 23 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1620](https://togithub.com/spf13/viper/pull/1620)
- chore(deps): update crypt by
[@&open-telemetry#8203;sagikazarmark](https://togithub.com/sagikazarmark) in
[https://github.com/spf13/viper/pull/1621](https://togithub.com/spf13/viper/pull/1621)
- build(deps): bump actions/dependency-review-action from 3.0.8 to 3.1.0
by [@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1623](https://togithub.com/spf13/viper/pull/1623)
- Bump minimum Go version to 1.19 by
[@&open-telemetry#8203;sagikazarmark](https://togithub.com/sagikazarmark) in
[https://github.com/spf13/viper/pull/1626](https://togithub.com/spf13/viper/pull/1626)
- build(deps): bump github/codeql-action from 2.21.5 to 2.21.6 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1632](https://togithub.com/spf13/viper/pull/1632)
- build(deps): bump github/codeql-action from 2.21.6 to 2.21.7 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1634](https://togithub.com/spf13/viper/pull/1634)
- build(deps): bump actions/checkout from 4.0.0 to 4.1.0 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1641](https://togithub.com/spf13/viper/pull/1641)
- build(deps): bump github.com/spf13/afero from 1.9.5 to 1.10.0 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1640](https://togithub.com/spf13/viper/pull/1640)
- build(deps): bump github/codeql-action from 2.21.7 to 2.21.8 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1638](https://togithub.com/spf13/viper/pull/1638)
- build(deps): bump github/codeql-action from 2.21.8 to 2.21.9 by
[@&open-telemetry#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/spf13/viper/pull/1648](https://togithub.com/spf13/viper/pull/1648)
- chore(deps): update crypt by
[@&open-telemetry#8203;sagikazarmark](https://togithub.com/sagikazarmark) in
[https://github.com/spf13/viper/pull/1652](https://togithub.com/spf13/viper/pull/1652)

##### Other Changes

- \[StepSecurity] ci: Harden GitHub Actions by
[@&open-telemetry#8203;step-security-bot](https://togithub.com/step-security-bot) in
[https://github.com/spf13/viper/pull/1592](https://togithub.com/spf13/viper/pull/1592)
- Add Vitess to list of projects using Viper by
[@&open-telemetry#8203;systay](https://togithub.com/systay) in
[https://github.com/spf13/viper/pull/1619](https://togithub.com/spf13/viper/pull/1619)
- docs: fix typos in comments by
[@&open-telemetry#8203;alexandear](https://togithub.com/alexandear) in
[https://github.com/spf13/viper/pull/1609](https://togithub.com/spf13/viper/pull/1609)
- ci: add Go 1.21 to the test matrix by
[@&open-telemetry#8203;sagikazarmark](https://togithub.com/sagikazarmark) in
[https://github.com/spf13/viper/pull/1622](https://togithub.com/spf13/viper/pull/1622)
- Remove usages of deprecated io/ioutil; simplify viper tests by
[@&open-telemetry#8203;alexandear](https://togithub.com/alexandear) in
[https://github.com/spf13/viper/pull/1631](https://togithub.com/spf13/viper/pull/1631)
- chore: remove deprecated build tags by
[@&open-telemetry#8203;alexandear](https://togithub.com/alexandear) in
[https://github.com/spf13/viper/pull/1630](https://togithub.com/spf13/viper/pull/1630)
- refactor: replace 'interface{}' with 'any' by
[@&open-telemetry#8203;alexandear](https://togithub.com/alexandear) in
[https://github.com/spf13/viper/pull/1646](https://togithub.com/spf13/viper/pull/1646)
- test: refactor asserts by
[@&open-telemetry#8203;alexandear](https://togithub.com/alexandear) in
[https://github.com/spf13/viper/pull/1644](https://togithub.com/spf13/viper/pull/1644)
- docs: add set subset KV example by
[@&open-telemetry#8203;yhliyr](https://togithub.com/yhliyr) in
[https://github.com/spf13/viper/pull/1647](https://togithub.com/spf13/viper/pull/1647)
- Make deps fixes by [@&open-telemetry#8203;bersace](https://togithub.com/bersace) in
[https://github.com/spf13/viper/pull/1628](https://togithub.com/spf13/viper/pull/1628)

#### New Contributors

- [@&open-telemetry#8203;goldeneggg](https://togithub.com/goldeneggg) made their first
contribution in
[https://github.com/spf13/viper/pull/1561](https://togithub.com/spf13/viper/pull/1561)
- [@&open-telemetry#8203;baruchiro](https://togithub.com/baruchiro) made their first
contribution in
[https://github.com/spf13/viper/pull/1565](https://togithub.com/spf13/viper/pull/1565)
- [@&open-telemetry#8203;testwill](https://togithub.com/testwill) made their first
contribution in
[https://github.com/spf13/viper/pull/1557](https://togithub.com/spf13/viper/pull/1557)
- [@&open-telemetry#8203;step-security-bot](https://togithub.com/step-security-bot)
made their first contribution in
[https://github.com/spf13/viper/pull/1592](https://togithub.com/spf13/viper/pull/1592)
- [@&open-telemetry#8203;systay](https://togithub.com/systay) made their first
contribution in
[https://github.com/spf13/viper/pull/1619](https://togithub.com/spf13/viper/pull/1619)
- [@&open-telemetry#8203;alexandear](https://togithub.com/alexandear) made their first
contribution in
[https://github.com/spf13/viper/pull/1609](https://togithub.com/spf13/viper/pull/1609)
- [@&open-telemetry#8203;hooksie1](https://togithub.com/hooksie1) made their first
contribution in
[https://github.com/spf13/viper/pull/1590](https://togithub.com/spf13/viper/pull/1590)
- [@&open-telemetry#8203;yhliyr](https://togithub.com/yhliyr) made their first
contribution in
[https://github.com/spf13/viper/pull/1647](https://togithub.com/spf13/viper/pull/1647)
- [@&open-telemetry#8203;bersace](https://togithub.com/bersace) made their first
contribution in
[https://github.com/spf13/viper/pull/1628](https://togithub.com/spf13/viper/pull/1628)
- [@&open-telemetry#8203;scop](https://togithub.com/scop) made their first
contribution in
[https://github.com/spf13/viper/pull/1650](https://togithub.com/spf13/viper/pull/1650)

**Full Changelog**:
spf13/viper@v1.16.0...v1.17.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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…tencentcloud/common to v1.0.802 (open-telemetry#29483)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common](https://togithub.com/tencentcloud/tencentcloud-sdk-go)
| require | patch | `v1.0.792` -> `v1.0.802` |

---

> [!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.802`](https://togithub.com/tencentcloud/tencentcloud-sdk-go/blob/HEAD/CHANGELOG.md#Release-v10802)

#### 腾讯混元大模型(hunyuan) 版本:2023-09-01

##### 第 1 次发布

发布时间:2023-11-23 11:01:12

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

改善已有的文档。

新增接口:

-   [ChatPro](https://cloud.tencent.com/document/api/1729/101837)
-   [ChatStd](https://cloud.tencent.com/document/api/1729/101836)
-   [GetTokenCount](https://cloud.tencent.com/document/api/1729/101835)

新增数据结构:

-   [Choice](https://cloud.tencent.com/document/api/1729/101838#Choice)
-   [Delta](https://cloud.tencent.com/document/api/1729/101838#Delta)
-
[ErrorMsg](https://cloud.tencent.com/document/api/1729/101838#ErrorMsg)
- [Message](https://cloud.tencent.com/document/api/1729/101838#Message)
-   [Usage](https://cloud.tencent.com/document/api/1729/101838#Usage)

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

#### 云服务器(cvm) 版本:2017-03-12

##### 第 121 次发布

发布时间:2023-11-23 01:14:32

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

改善已有的文档。

修改接口:

-
[ModifyInstancesAttribute](https://cloud.tencent.com/document/api/213/15739)

    -   新增入参:UserData

#### Elasticsearch Service(es) 版本:2018-04-16

##### 第 50 次发布

发布时间:2023-11-23 01:18:36

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

改善已有的文档。

修改接口:

-   [RestartInstance](https://cloud.tencent.com/document/api/845/30630)

    -   新增入参:UpgradeKernel

-   [UpdateInstance](https://cloud.tencent.com/document/api/845/30629)

    -   新增入参:KibanaPrivateDomain, CerebroPrivateDomain

修改数据结构:

-
[InstanceInfo](https://cloud.tencent.com/document/api/845/30634#InstanceInfo)

    -   新增成员:KibanaPrivateVip, CustomKibanaPrivateUrl

-
[OptionalWebServiceInfo](https://cloud.tencent.com/document/api/845/30634#OptionalWebServiceInfo)

    -   新增成员:PrivateVip, CustomPrivateUrl

#### 腾讯电子签企业版(ess) 版本:2020-11-11

##### 第 136 次发布

发布时间:2023-11-23 01:18:49

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

改善已有的文档。

修改接口:

-   [CreateSchemeUrl](https://cloud.tencent.com/document/api/1323/70359)

    -   新增入参:IdCardType, IdCardNumber

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

##### 第 133 次发布

发布时间:2023-11-23 01:19:06

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

改善已有的文档。

修改接口:

-   [CreateSignUrls](https://cloud.tencent.com/document/api/1420/61522)

    -   新增入参:IdCardType, IdCardNumber

修改数据结构:

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

    -   <font color="#dd0000">**修改成员**:</font>NotChannelOrganization

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

#### 腾讯云区块链服务平台 TBaaS(tbaas) 版本:2018-04-16

##### 第 20 次发布

发布时间:2023-11-23 01:26:18

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

改善已有的文档。

修改接口:

-   [DownloadUserCert](https://cloud.tencent.com/document/api/663/38516)

    -   新增出参:Cert

-   [Invoke](https://cloud.tencent.com/document/api/663/19464)

    -   新增出参:TxId

#### 容器镜像服务(tcr) 版本:2019-09-24

##### 第 62 次发布

发布时间:2023-11-23 01:27:00

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

改善已有的文档。

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

-   CreateCustomAccount
-   DeleteCustomAccount
-   DescribeCustomAccounts
-   ModifyCustomAccount

#### 微服务引擎 TSE(tse) 版本:2020-12-07

##### 第 54 次发布

发布时间:2023-11-23 01:30:34

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

改善已有的文档。

新增接口:

- [DeleteWafDomains](https://cloud.tencent.com/document/api/1364/101828)
-
[DescribeWafDomains](https://cloud.tencent.com/document/api/1364/101827)
-
[DescribeWafProtection](https://cloud.tencent.com/document/api/1364/101826)

新增数据结构:

-
[DescribeWafDomainsResult](https://cloud.tencent.com/document/api/1364/54942#DescribeWafDomainsResult)
-
[DescribeWafProtectionResult](https://cloud.tencent.com/document/api/1364/54942#DescribeWafProtectionResult)
-
[RouteWafStatus](https://cloud.tencent.com/document/api/1364/54942#RouteWafStatus)
-
[ServiceWafStatus](https://cloud.tencent.com/document/api/1364/54942#ServiceWafStatus)

#### 数据开发治理平台 WeData(wedata) 版本:2021-08-20

##### 第 59 次发布

发布时间:2023-11-23 01:33:33

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

改善已有的文档。

新增接口:

-
[DescribeColumnsMeta](https://cloud.tencent.com/document/api/1267/101829)

新增数据结构:

-
[ColumnMeta](https://cloud.tencent.com/document/api/1267/76336#ColumnMeta)
-   [Pair](https://cloud.tencent.com/document/api/1267/76336#Pair)

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

#### 云数据库 MySQL(cdb) 版本:2017-03-20

##### 第 148 次发布

发布时间:2023-11-22 01:30:13

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

改善已有的文档。

新增接口:

- [CloseAuditService](https://cloud.tencent.com/document/api/236/101816)
-
[CreateAuditRuleTemplate](https://cloud.tencent.com/document/api/236/101815)
-
[DeleteAuditRuleTemplates](https://cloud.tencent.com/document/api/236/101814)
-   [DeleteDatabase](https://cloud.tencent.com/document/api/236/101808)
-
[DescribeAuditInstanceList](https://cloud.tencent.com/document/api/236/101813)
-
[DescribeAuditRuleTemplateModifyHistory](https://cloud.tencent.com/document/api/236/101812)
-
[DescribeAuditRuleTemplates](https://cloud.tencent.com/document/api/236/101811)
-
[ModifyAuditRuleTemplates](https://cloud.tencent.com/document/api/236/101810)
-
[ModifyAuditService](https://cloud.tencent.com/document/api/236/101809)

新增数据结构:

-
[AuditInstanceFilters](https://cloud.tencent.com/document/api/236/15878#AuditInstanceFilters)
-
[AuditInstanceInfo](https://cloud.tencent.com/document/api/236/15878#AuditInstanceInfo)
-
[AuditRuleTemplateInfo](https://cloud.tencent.com/document/api/236/15878#AuditRuleTemplateInfo)
-
[InstanceDbAuditStatus](https://cloud.tencent.com/document/api/236/15878#InstanceDbAuditStatus)
-
[RuleTemplateInfo](https://cloud.tencent.com/document/api/236/15878#RuleTemplateInfo)
-
[RuleTemplateRecordInfo](https://cloud.tencent.com/document/api/236/15878#RuleTemplateRecordInfo)

修改数据结构:

-
[InstanceInfo](https://cloud.tencent.com/document/api/236/15878#InstanceInfo)

    -   新增成员:ExpandCpu

    -   <font color="#dd0000">**修改成员**:</font>MasterInfo

#### 混沌演练平台(cfg) 版本:2021-08-20

##### 第 13 次发布

发布时间:2023-11-22 01:45:21

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

改善已有的文档。

新增接口:

-
[DescribeTaskPolicyTriggerLog](https://cloud.tencent.com/document/api/1500/101818)
-   [TriggerPolicy](https://cloud.tencent.com/document/api/1500/101817)

新增数据结构:

-
[PolicyTriggerLog](https://cloud.tencent.com/document/api/1500/71784#PolicyTriggerLog)

#### 配置审计(config) 版本:2022-08-02

##### 第 1 次发布

发布时间:2023-11-21 15:26:06

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

改善已有的文档。

新增接口:

-
[ListAggregateConfigRules](https://cloud.tencent.com/document/api/1579/101782)
- [ListConfigRules](https://cloud.tencent.com/document/api/1579/101781)

新增数据结构:

-
[Annotation](https://cloud.tencent.com/document/api/1579/101783#Annotation)
-
[ConfigRule](https://cloud.tencent.com/document/api/1579/101783#ConfigRule)
-
[InputParameter](https://cloud.tencent.com/document/api/1579/101783#InputParameter)
-
[InputParameterForManage](https://cloud.tencent.com/document/api/1579/101783#InputParameterForManage)
-
[SourceConditionForManage](https://cloud.tencent.com/document/api/1579/101783#SourceConditionForManage)
-   [Tag](https://cloud.tencent.com/document/api/1579/101783#Tag)
-
[TriggerType](https://cloud.tencent.com/document/api/1579/101783#TriggerType)

#### 高性能应用服务(hai) 版本:2023-08-12

##### 第 4 次发布

发布时间:2023-11-22 04:14:20

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

改善已有的文档。

修改数据结构:

-
[SystemDisk](https://cloud.tencent.com/document/api/1721/101518#SystemDisk)

    -   新增成员:DiskName

#### 消息队列 TDMQ(tdmq) 版本:2020-02-17

##### 第 93 次发布

发布时间:2023-11-22 06:38:54

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

改善已有的文档。

修改接口:

- [CreateProCluster](https://cloud.tencent.com/document/api/1179/101433)

    -   新增入参:Vpc

    -   <font color="#dd0000">**删除入参**:</font>Vpcs

修改数据结构:

-   [Cluster](https://cloud.tencent.com/document/api/1179/46089#Cluster)

    -   新增成员:ProjectId, ProjectName

#### 边缘安全加速平台(teo) 版本:2022-09-01

##### 第 64 次发布

发布时间:2023-11-22 06:42:38

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

改善已有的文档。

修改接口:

-
[DescribePrefetchTasks](https://cloud.tencent.com/document/api/1552/80700)

    -   新增入参:ZoneId

#### 边缘安全加速平台(teo) 版本:2022-01-06

#### 容器服务(tke) 版本:2018-05-25

##### 第 163 次发布

发布时间:2023-11-22 06:54:10

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

改善已有的文档。

修改接口:

-   [DescribeIPAMD](https://cloud.tencent.com/document/api/457/101765)

    -   新增出参:ClaimExpiredDuration

#### 微服务引擎 TSE(tse) 版本:2020-12-07

##### 第 53 次发布

发布时间:2023-11-22 07:09:30

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

改善已有的文档。

新增接口:

-
[CloseWafProtection](https://cloud.tencent.com/document/api/1364/101822)
- [CreateWafDomains](https://cloud.tencent.com/document/api/1364/101821)
-
[OpenWafProtection](https://cloud.tencent.com/document/api/1364/101820)

#### 云点播(vod) 版本:2018-07-17

##### 第 171 次发布

发布时间:2023-11-22 07:26:03

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

改善已有的文档。

修改接口:

- [DescribeTaskDetail](https://cloud.tencent.com/document/api/266/33431)

    -   新增出参:QualityEnhanceTask

新增数据结构:

-
[QualityEnhanceTask](https://cloud.tencent.com/document/api/266/31773#QualityEnhanceTask)
-
[QualityEnhanceTaskInput](https://cloud.tencent.com/document/api/266/31773#QualityEnhanceTaskInput)
-
[QualityEnhanceTaskOutput](https://cloud.tencent.com/document/api/266/31773#QualityEnhanceTaskOutput)

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

#### 费用中心(billing) 版本:2018-07-09

##### 第 50 次发布

发布时间:2023-11-21 01:07:18

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

改善已有的文档。

修改接口:

- [DescribeBillDetail](https://cloud.tencent.com/document/api/555/19182)

-
[DescribeBillDetailForOrganization](https://cloud.tencent.com/document/api/555/98858)

-
[DescribeBillResourceSummary](https://cloud.tencent.com/document/api/555/19181)

-
[DescribeBillResourceSummaryForOrganization](https://cloud.tencent.com/document/api/555/98857)

#### 云数据库 MySQL(cdb) 版本:2017-03-20

##### 第 147 次发布

发布时间:2023-11-21 01:08:38

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

改善已有的文档。

修改接口:

-   [RenewDBInstance](https://cloud.tencent.com/document/api/236/30160)

    -   新增入参:AutoRenew

#### 数据安全治理中心(dsgc) 版本:2019-07-23

##### 第 6 次发布

发布时间:2023-11-21 01:16:05

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

改善已有的文档。

修改数据结构:

-
[RiskLevelRisk](https://cloud.tencent.com/document/api/1087/96844#RiskLevelRisk)

- <font color="#dd0000">**修改成员**:</font>Id, RiskLevelName,
RiskLevelDescription, IdentifyComplianceName, Type

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

##### 第 55 次发布

发布时间:2023-11-21 01:25:12

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

改善已有的文档。

新增接口:

-
[BalanceReadOnlyGroup](https://cloud.tencent.com/document/api/238/101753)
- [DeleteRestoreTask](https://cloud.tencent.com/document/api/238/101743)
-
[DescribeAccountPrivilegeByDB](https://cloud.tencent.com/document/api/238/101729)
-
[DescribeCollationTimeZone](https://cloud.tencent.com/document/api/238/101735)
-
[DescribeCrossRegions](https://cloud.tencent.com/document/api/238/101738)
-
[DescribeDBPrivilegeByAccount](https://cloud.tencent.com/document/api/238/101715)
-
[DescribeDBRestoreTime](https://cloud.tencent.com/document/api/238/101742)
-
[DescribeDatabaseNames](https://cloud.tencent.com/document/api/238/101714)
-
[DescribeInquiryPriceParameter](https://cloud.tencent.com/document/api/238/101749)
-
[DescribeInstanceTasks](https://cloud.tencent.com/document/api/238/101734)
-
[DescribeInstanceTradeParameter](https://cloud.tencent.com/document/api/238/101748)
-
[DescribeProductSpec](https://cloud.tencent.com/document/api/238/101747)
-
[DescribeReadOnlyGroupAutoWeight](https://cloud.tencent.com/document/api/238/101752)
-
[DescribeRestoreTask](https://cloud.tencent.com/document/api/238/101741)
-
[DescribeSpecSellStatus](https://cloud.tencent.com/document/api/238/101746)
-
[DescribeUpgradeInstanceCheck](https://cloud.tencent.com/document/api/238/101733)
- [ModifyCloseWanIp](https://cloud.tencent.com/document/api/238/101718)
-
[ModifyDBInstanceNote](https://cloud.tencent.com/document/api/238/101732)
-   [ModifyOpenWanIp](https://cloud.tencent.com/document/api/238/101717)
-
[ModifyPublishSubscribe](https://cloud.tencent.com/document/api/238/101756)

新增数据结构:

-
[CheckItem](https://cloud.tencent.com/document/api/238/19976#CheckItem)
-
[InstanceTask](https://cloud.tencent.com/document/api/238/19976#InstanceTask)
-
[ModifyDataBaseTuple](https://cloud.tencent.com/document/api/238/19976#ModifyDataBaseTuple)
-   [Price](https://cloud.tencent.com/document/api/238/19976#Price)
-
[ProductSpec](https://cloud.tencent.com/document/api/238/19976#ProductSpec)
-
[RestoreTask](https://cloud.tencent.com/document/api/238/19976#RestoreTask)
-
[SpecSellStatus](https://cloud.tencent.com/document/api/238/19976#SpecSellStatus)
-
[ZoneStatus](https://cloud.tencent.com/document/api/238/19976#ZoneStatus)

#### 腾讯云区块链服务平台 TBaaS(tbaas) 版本:2018-04-16

##### 第 19 次发布

发布时间:2023-11-21 01:32:15

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

改善已有的文档。

新增接口:

-
[DescribeFabricBlock](https://cloud.tencent.com/document/api/663/101763)
-
[DescribeFabricTransaction](https://cloud.tencent.com/document/api/663/101762)
-
[InvokeFabricChaincode](https://cloud.tencent.com/document/api/663/101761)
-
[QueryFabricChaincode](https://cloud.tencent.com/document/api/663/101760)

新增数据结构:

-
[Transaction](https://cloud.tencent.com/document/api/663/19466#Transaction)

#### 容器安全服务(tcss) 版本:2020-11-01

##### 第 55 次发布

发布时间:2023-11-21 01:33:13

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

改善已有的文档。

修改接口:

-
[AddAssetImageRegistryRegistryDetail](https://cloud.tencent.com/document/api/1285/65560)

    -   新增入参:NeedScan

-
[AddEditImageAutoAuthorizedRule](https://cloud.tencent.com/document/api/1285/81638)

    -   新增入参:AutoScanEnabled, ScanType

-
[CreateAssetImageScanSetting](https://cloud.tencent.com/document/api/1285/65591)

    -   新增入参:ContainerRunning, ScanScope, ScanEndTime

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

-
[CreateAssetImageScanTask](https://cloud.tencent.com/document/api/1285/65515)

    -   新增入参:ContainerRunning, ScanScope, Timeout

-
[DescribeAssetImageDetail](https://cloud.tencent.com/document/api/1285/65506)

    -   新增出参:ImageDigest

-
[DescribeAssetImageScanSetting](https://cloud.tencent.com/document/api/1285/65487)

    -   新增出参:ContainerRunning, ScanScope, ScanEndTime

-
[DescribeAssetSummary](https://cloud.tencent.com/document/api/1285/65477)

- 新增出参:TodayNewImageCnt, TodayUnsafeImageCnt, RecommendedFixImageCnt,
ScannedImageCnt

-
[DescribeImageAutoAuthorizedRule](https://cloud.tencent.com/document/api/1285/81628)

    -   新增出参:AutoScanEnabled, ScanType

-
[RenewImageAuthorizeState](https://cloud.tencent.com/document/api/1285/65459)

    -   新增入参:NeedScan, ScanType

-
[SyncAssetImageRegistryAsset](https://cloud.tencent.com/document/api/1285/65458)

    -   新增入参:All, RegistryIds

新增数据结构:

-
[ImageVulLayerInfo](https://cloud.tencent.com/document/api/1285/65614#ImageVulLayerInfo)

修改数据结构:

-
[ImageRepoInfo](https://cloud.tencent.com/document/api/1285/65614#ImageRepoInfo)

    -   新增成员:RecommendedFix

- [ImageVul](https://cloud.tencent.com/document/api/1285/65614#ImageVul)

    -   新增成员:LayerInfos

-
[ImagesInfo](https://cloud.tencent.com/document/api/1285/65614#ImagesInfo)

- 新增成员:CriticalLevelVulCnt, HighLevelVulCnt, MediumLevelVulCnt,
LowLevelVulCnt, IsLatestImage, RecommendedFix

-
[ImagesVul](https://cloud.tencent.com/document/api/1285/65614#ImagesVul)

    -   新增成员:AttackLevel

#### 消息队列 TDMQ(tdmq) 版本:2020-02-17

##### 第 92 次发布

发布时间:2023-11-21 01:35:04

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

改善已有的文档。

修改接口:

- [CreateProCluster](https://cloud.tencent.com/document/api/1179/101433)

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

#### 容器服务(tke) 版本:2018-05-25

##### 第 162 次发布

发布时间:2023-11-21 01:37:07

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

改善已有的文档。

新增接口:

-
[DescribeClusterExtraArgs](https://cloud.tencent.com/document/api/457/101764)
-
[DescribeExternalNodeSupportConfig](https://cloud.tencent.com/document/api/457/101767)
-   [DescribeIPAMD](https://cloud.tencent.com/document/api/457/101765)

修改接口:

-
[DescribeClusterEndpoints](https://cloud.tencent.com/document/api/457/78051)

    -   新增出参:ClusterIntranetSubnetId

新增数据结构:

-   [Step](https://cloud.tencent.com/document/api/457/31866#Step)

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

##### 第 6 次发布

发布时间:2023-11-21 01:38:03

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

改善已有的文档。

新增接口:

-
[ImportSourceClusterConsumerGroups](https://cloud.tencent.com/document/api/1493/101770)
-
[ImportSourceClusterTopics](https://cloud.tencent.com/document/api/1493/101769)

新增数据结构:

-
[SourceClusterGroupConfig](https://cloud.tencent.com/document/api/1493/96031#SourceClusterGroupConfig)
-
[SourceClusterTopicConfig](https://cloud.tencent.com/document/api/1493/96031#SourceClusterTopicConfig)

#### 微服务引擎 TSE(tse) 版本:2020-12-07

##### 第 52 次发布

发布时间:2023-11-21 01:38:30

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

改善已有的文档。

修改数据结构:

-
[KongTarget](https://cloud.tencent.com/document/api/1364/54942#KongTarget)

    -   新增成员:CvmInstanceId, CvmInstanceName

-
[SREInstance](https://cloud.tencent.com/document/api/1364/54942#SREInstance)

- <font color="#dd0000">**修改成员**:</font>FeatureVersion,
EnableClientIntranet, StorageOption

#### 声音复刻(vrs) 版本:2020-08-24

##### 第 5 次发布

发布时间:2023-11-21 01:41:45

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

改善已有的文档。

修改数据结构:

-
[VoiceTypeInfo](https://cloud.tencent.com/document/api/1283/90065#VoiceTypeInfo)

    -   新增成员:IsDeployed

#### Web 应用防火墙(waf) 版本:2018-01-25

##### 第 75 次发布

发布时间:2023-11-21 01:41:48

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

改善已有的文档。

修改接口:

-
[DescribeIpAccessControl](https://cloud.tencent.com/document/api/627/72645)

    -   新增入参:ValidTimeStampMin, ValidTimeStampMax

- [DescribeIpHitItems](https://cloud.tencent.com/document/api/627/72644)

    -   新增入参:ValidTimeStampMin, ValidTimeStampMax

-
[DescribeModuleStatus](https://cloud.tencent.com/document/api/627/101340)

    -   新增出参:RateLimit

- [ModifyModuleStatus](https://cloud.tencent.com/document/api/627/99699)

    -   新增入参:RateLimit

-
[UpsertIpAccessControl](https://cloud.tencent.com/document/api/627/72636)

    -   新增出参:Ids

-   [UpsertSession](https://cloud.tencent.com/document/api/627/97645)

    -   新增出参:SessionID

修改数据结构:

-
[AccessHistogramItem](https://cloud.tencent.com/document/api/627/53609#AccessHistogramItem)

    -   新增成员:BeginTime

-
[ClbObject](https://cloud.tencent.com/document/api/627/53609#ClbObject)

    -   新增成员:Type, Region

-
[DescribeCustomRulesRspRuleListItem](https://cloud.tencent.com/document/api/627/53609#DescribeCustomRulesRspRuleListItem)

    -   新增成员:ModifyTime, ValidStatus, Source

-
[PeakPointsItem](https://cloud.tencent.com/document/api/627/53609#PeakPointsItem)

    -   新增成员:WxAccess

#### 数据开发治理平台 WeData(wedata) 版本:2021-08-20

##### 第 58 次发布

发布时间:2023-11-21 01:42:45

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

改善已有的文档。

新增接口:

-
[DescribeApproveTypeList](https://cloud.tencent.com/document/api/1267/101771)

新增数据结构:

-
[ApproveType](https://cloud.tencent.com/document/api/1267/76336#ApproveType)

修改数据结构:

-   [Apply](https://cloud.tencent.com/document/api/1267/76336#Apply)

- 新增成员:ErrorMessage, ApplyName, ApproverId, ApproverName,
ApproveProjectName

    -   <font color="#dd0000">**修改成员**:</font>ApplicantName, ApproveId

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

#### 云服务器(cvm) 版本:2017-03-12

##### 第 120 次发布

发布时间:2023-11-20 00:06:15

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

改善已有的文档。

修改数据结构:

-
[InstanceTypeConfig](https://cloud.tencent.com/document/api/213/15753#InstanceTypeConfig)

- <font color="#dd0000">**修改成员**:</font>Zone, InstanceType,
InstanceFamily, GPU, CPU, Memory

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

##### 第 121 次发布

发布时间:2023-11-20 00:15:46

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

改善已有的文档。

修改接口:

-   [MLIDPassportOCR](https://cloud.tencent.com/document/api/866/37657)

    -   新增出参:Type, PassportRecognizeInfos

新增数据结构:

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

#### 数据开发治理平台 WeData(wedata) 版本:2021-08-20

##### 第 57 次发布

发布时间:2023-11-20 00:24:26

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

改善已有的文档。

新增接口:

-
[BatchCreateTaskVersionDs](https://cloud.tencent.com/document/api/1267/101693)
-
[CreateTaskVersionDs](https://cloud.tencent.com/document/api/1267/101692)
-
[DescribeApproveList](https://cloud.tencent.com/document/api/1267/101695)
-
[ModifyApproveStatus](https://cloud.tencent.com/document/api/1267/101694)

新增数据结构:

-
[AlarmDsVO](https://cloud.tencent.com/document/api/1267/76336#AlarmDsVO)
-
[AlarmExtDsVO](https://cloud.tencent.com/document/api/1267/76336#AlarmExtDsVO)
-   [Apply](https://cloud.tencent.com/document/api/1267/76336#Apply)
-
[ApproveModify](https://cloud.tencent.com/document/api/1267/76336#ApproveModify)
-
[AttributeItemDsVO](https://cloud.tencent.com/document/api/1267/76336#AttributeItemDsVO)
-
[BatchCreateTaskVersionDTO](https://cloud.tencent.com/document/api/1267/76336#BatchCreateTaskVersionDTO)
-
[BatchCreateTaskVersionDsDTOLite](https://cloud.tencent.com/document/api/1267/76336#BatchCreateTaskVersionDsDTOLite)
-
[BatchOperateResultDs](https://cloud.tencent.com/document/api/1267/76336#BatchOperateResultDs)
-
[CandidateDsDTo](https://cloud.tencent.com/document/api/1267/76336#CandidateDsDTo)
-
[DependencyConfigDsDTONoRecurV2](https://cloud.tencent.com/document/api/1267/76336#DependencyConfigDsDTONoRecurV2)
-
[DependencyStrategyDs](https://cloud.tencent.com/document/api/1267/76336#DependencyStrategyDs)
-
[DescribeApply](https://cloud.tencent.com/document/api/1267/76336#DescribeApply)
-
[FilterOptional](https://cloud.tencent.com/document/api/1267/76336#FilterOptional)
-
[OrderFieldOptional](https://cloud.tencent.com/document/api/1267/76336#OrderFieldOptional)
-
[ParamInfoDs](https://cloud.tencent.com/document/api/1267/76336#ParamInfoDs)
-
[ParameterTaskDsDto](https://cloud.tencent.com/document/api/1267/76336#ParameterTaskDsDto)
-
[ParameterTaskInDsDto](https://cloud.tencent.com/document/api/1267/76336#ParameterTaskInDsDto)
-
[ParameterTaskOutDsDto](https://cloud.tencent.com/document/api/1267/76336#ParameterTaskOutDsDto)
-
[TaskDsDTOLiteV2](https://cloud.tencent.com/document/api/1267/76336#TaskDsDTOLiteV2)
-
[TaskDsDTONoRecurV2](https://cloud.tencent.com/document/api/1267/76336#TaskDsDTONoRecurV2)
-
[TaskExtDsVO](https://cloud.tencent.com/document/api/1267/76336#TaskExtDsVO)
-
[TaskLinkDsDTO](https://cloud.tencent.com/document/api/1267/76336#TaskLinkDsDTO)
-
[TaskTypeDsVO](https://cloud.tencent.com/document/api/1267/76336#TaskTypeDsVO)
-
[TaskTypeExtDsVO](https://cloud.tencent.com/document/api/1267/76336#TaskTypeExtDsVO)
-
[TaskTypeExtParamDsVO](https://cloud.tencent.com/document/api/1267/76336#TaskTypeExtParamDsVO)

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

#### 数据湖计算 DLC(dlc) 版本:2021-01-25

##### 第 76 次发布

发布时间:2023-11-17 01:13:25

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

改善已有的文档。

新增接口:

-
[DescribeTablesName](https://cloud.tencent.com/document/api/1342/101641)

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

##### 第 54 次发布

发布时间:2023-11-17 01:22:32

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

改善已有的文档。

新增接口:

-
[DescribeBackupMonitor](https://cloud.tencent.com/document/api/238/101650)
-
[DescribeBackupStatistical](https://cloud.tencent.com/document/api/238/101649)
-
[DescribeBackupSummary](https://cloud.tencent.com/document/api/238/101648)
-
[DescribeCrossBackupStatistical](https://cloud.tencent.com/document/api/238/101647)
- [DescribeDatabases](https://cloud.tencent.com/document/api/238/101644)
-
[DescribeDatabasesNormal](https://cloud.tencent.com/document/api/238/101643)
-
[DescribeRegularBackupPlan](https://cloud.tencent.com/document/api/238/101646)
-
[ModifyCrossBackupStrategy](https://cloud.tencent.com/document/api/238/101645)
-
[ModifyDatabaseShrinkMDF](https://cloud.tencent.com/document/api/238/101642)

新增数据结构:

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

#### 消息队列 TDMQ(tdmq) 版本:2020-02-17

##### 第 91 次发布

发布时间:2023-11-17 01:25:23

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

改善已有的文档。

修改数据结构:

-
[RocketMQSubscription](https://cloud.tencent.com/document/api/1179/46089#RocketMQSubscription)

    -   新增成员:ClientProtocol

-
[RocketMQVipInstance](https://cloud.tencent.com/document/api/1179/46089#RocketMQVipInstance)

    -   新增成员:AclEnabled, DestroyTime

- <font color="#dd0000">**修改成员**:</font>MaxRetention, MinRetention,
Retention

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

##### 第 43 次发布

发布时间:2023-11-17 01:26:29

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

改善已有的文档。

修改接口:

- [CreateTrainingTask](https://cloud.tencent.com/document/api/851/75094)

    -   新增入参:PreTrainModel

新增数据结构:

-
[PreTrainModel](https://cloud.tencent.com/document/api/851/75051#PreTrainModel)

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

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

#### Web 应用防火墙(waf) 版本:2018-01-25

##### 第 74 次发布

发布时间:2023-11-16 17:58:08

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

改善已有的文档。

修改数据结构:

-
[SessionItem](https://cloud.tencent.com/document/api/627/53609#SessionItem)

    -   新增成员:SessionId, SessionName, SessionInUsed, RelatedRuleID

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

#### API 网关(apigateway) 版本:2018-08-08

##### 第 47 次发布

发布时间:2023-11-16 01:06:33

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

改善已有的文档。

修改接口:

-   [CreateAPIDoc](https://cloud.tencent.com/document/api/628/54951)

    -   新增入参:Tags

-   [CreateApiKey](https://cloud.tencent.com/document/api/628/45213)

    -   新增入参:Tags

-   [CreateUsagePlan](https://cloud.tencent.com/document/api/628/45224)

    -   新增入参:Tags

修改数据结构:

-   [APIDoc](https://cloud.tencent.com/document/api/628/45244#APIDoc)

    -   新增成员:Tags

-
[APIDocInfo](https://cloud.tencent.com/document/api/628/45244#APIDocInfo)

    -   新增成员:Tags

-   [ApiKey](https://cloud.tencent.com/document/api/628/45244#ApiKey)

    -   新增成员:Tags

-
[ApiUsagePlan](https://cloud.tencent.com/document/api/628/45244#ApiUsagePlan)

    -   新增成员:Tags

-
[UsagePlanInfo](https://cloud.tencent.com/document/api/628/45244#UsagePlanInfo)

    -   新增成员:Tags

-
[UsagePlanStatusInfo](https://cloud.tencent.com/document/api/628/45244#UsagePlanStatusInfo)

    -   新增成员:Tags

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

##### 第 23 次发布

发布时间:2023-11-16 01:12:23

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

改善已有的文档。

修改数据结构:

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

- <font color="#dd0000">**修改成员**:</font>AffectAsset, Level,
InstanceType, Component, Service, RecentTime, FirstTime, Status, Id,
Index, InstanceId, InstanceName, AppId, Nick, Uin, VULType, Port,
Describe, AppName, References, AppVersion, VULURL, VULName, CVE, Fix,
POCId, From, CWPVersion, IsSupportRepair, IsSupportDetect, InstanceUUID,
Payload, EMGCVulType

#### T-Sec-堡垒机(BH)(dasb) 版本:2019-10-18

##### 第 20 次发布

发布时间:2023-11-16 01:14:38

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

改善已有的文档。

新增接口:

- [ModifyUserGroup](https://cloud.tencent.com/document/api/1025/101605)

#### 数据湖计算 DLC(dlc) 版本:2021-01-25

##### 第 75 次发布

发布时间:2023-11-16 01:15:33

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

改善已有的文档。

新增接口:

-
[DescribeUpdatableDataEngines](https://cloud.tencent.com/document/api/1342/101606)

修改接口:

- [CreateDataEngine](https://cloud.tencent.com/document/api/1342/87875)

    -   新增入参:EngineNetworkId, EngineGeneration

-
[DescribeDataEngines](https://cloud.tencent.com/document/api/1342/86308)

    -   新增入参:EngineGeneration, EngineTypeDetail

新增数据结构:

-
[DataEngineBasicInfo](https://cloud.tencent.com/document/api/1342/53778#DataEngineBasicInfo)

#### 数据安全治理中心(dsgc) 版本:2019-07-23

##### 第 5 次发布

发布时间:2023-11-16 01:16:33

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

改善已有的文档。

修改接口:

-
[DescribeDSPAESDataAssetDetail](https://cloud.tencent.com/document/api/1087/97143)

    -   新增入参:CreditScore

-
[DescribeDSPARDBDataAssetDetail](https://cloud.tencent.com/document/api/1087/97204)

    -   新增入参:CreditScore

-
[ModifyDSPAESTaskResult](https://cloud.tencent.com/document/api/1087/97191)

    -   新增入参:SrcRuleId, SrcCategoryId, SrcLevelId, IdentifyType

-
[ModifyDSPATaskResult](https://cloud.tencent.com/document/api/1087/97190)

    -   新增入参:SrcRuleId, SrcCategoryId, SrcLevelId, IdentifyType

修改数据结构:

-
[DspaRDBDataAssetDetail](https://cloud.tencent.com/document/api/1087/96844#DspaRDBDataAssetDetail)

    -   新增成员:IdentifyType, CheckStatus, IsSensitiveData

-
[ESDataAssetDetail](https://cloud.tencent.com/document/api/1087/96844#ESDataAssetDetail)

    -   新增成员:IdentifyType, CheckStatus

#### 高性能应用服务(hai) 版本:2023-08-12

##### 第 3 次发布

发布时间:2023-11-16 01:20:06

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

改善已有的文档。

新增接口:

-
[DescribeApplications](https://cloud.tencent.com/document/api/1721/101609)
-
[DescribeInstanceNetworkStatus](https://cloud.tencent.com/document/api/1721/101613)
-
[DescribeInstances](https://cloud.tencent.com/document/api/1721/101612)
- [DescribeRegions](https://cloud.tencent.com/document/api/1721/101615)
-   [DescribeScenes](https://cloud.tencent.com/document/api/1721/101608)
-
[DescribeServiceLoginSettings](https://cloud.tencent.com/document/api/1721/101611)
-
[InquirePriceRunInstances](https://cloud.tencent.com/document/api/1721/101610)

新增数据结构:

-
[ApplicationInfo](https://cloud.tencent.com/document/api/1721/101518#ApplicationInfo)
-   [Filter](https://cloud.tencent.com/document/api/1721/101518#Filter)
-
[Instance](https://cloud.tencent.com/document/api/1721/101518#Instance)
-
[ItemPrice](https://cloud.tencent.com/document/api/1721/101518#ItemPrice)
-
[LoginService](https://cloud.tencent.com/document/api/1721/101518#LoginService)
-
[LoginSetting](https://cloud.tencent.com/document/api/1721/101518#LoginSetting)
-
[NetworkStatus](https://cloud.tencent.com/document/api/1721/101518#NetworkStatus)
-   [Price](https://cloud.tencent.com/document/api/1721/101518#Price)
-
[RegionInfo](https://cloud.tencent.com/document/api/1721/101518#RegionInfo)
-
[SceneInfo](https://cloud.tencent.com/document/api/1721/101518#SceneInfo)

#### 流计算 Oceanus(oceanus) 版本:2019-04-22

##### 第 45 次发布

发布时间:2023-11-16 01:25:38

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

改善已有的文档。

修改接口:

-
[DescribeTreeResources](https://cloud.tencent.com/document/api/849/79568)

    -   新增入参:Filters, Offset, Limit

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

##### 第 120 次发布

发布时间:2023-11-16 01:25:49

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

改善已有的文档。

修改数据结构:

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

    -   新增成员:TaxPayNum, TaxCode

- <font color="#dd0000">**修改成员**:</font>Title, Code, Number, Date,
PretaxAmount, Total, TotalCn, Seller, SellerTaxID, SellerTel,
SellerAddress, SellerBank, SellerBankAccount, Buyer, BuyerTaxID,
BuyerID, TaxAuthorities, TaxAuthoritiesCode, VIN, VehicleModel,
VehicleEngineCode, CertificateNumber, InspectionNumber, MachineID,
VehicleType, Kind, Province, City, Tax, TaxRate, CompanySealMark,
Tonnage, Remark, FormType, FormName, Issuer, TaxNum, MaxPeopleNum,
Origin, MachineCode, MachineNumber, QRCodeMark

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

- 新增成员:AuctionOrgName, AuctionOrgAddress, AuctionOrgTaxID,
AuctionOrgBankAccount, AuctionOrgPhone, Issuer, TaxCode,
MachineSerialNumber, MachineCode, MachineNumber

- <font color="#dd0000">**修改成员**:</font>Title, QRCodeMark, Code, Number,
Date, Total, TotalCn, Seller, SellerTel, SellerTaxID, SellerAddress,
Buyer, BuyerID, BuyerAddress, BuyerTel, CompanyName, CompanyTaxID,
CompanyBankAccount, CompanyTel, CompanyAddress,
TransferAdministrationName, LicensePlate, RegistrationNumber, VIN,
VehicleModel, Kind, Province, City, VehicleType, Remark, FormType,
FormName, CompanySealMark

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

##### 第 42 次发布

发布时间:2023-11-16 01:32:39

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

改善已有的文档。

新增接口:

-   [DescribeEvents](https://cloud.tencent.com/document/api/851/101617)

修改接口:

-   [DescribeLogs](https://cloud.tencent.com/document/api/851/75076)

    -   新增入参:ServiceId

新增数据结构:

-   [Event](https://cloud.tencent.com/document/api/851/75051#Event)

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

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

##### 第 60 次发布

发布时间:2023-11-16 01:34:14

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

改善已有的文档。

修改数据结构:

-
[McuWaterMarkImage](https://cloud.tencent.com/document/api/647/44055#McuWaterMarkImage)

    -   新增成员:DynamicPosType

-
[McuWaterMarkText](https://cloud.tencent.com/document/api/647/44055#McuWaterMarkText)

    -   新增成员:DynamicPosType

#### 云点播(vod) 版本:2018-07-17

##### 第 170 次发布

发布时间:2023-11-16 01:35:27

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

改善已有的文档。

新增接口:

-
[CreateJustInTimeTranscodeTemplate](https://cloud.tencent.com/document/api/266/101622)
-
[DeleteJustInTimeTranscodeTemplate](https://cloud.tencent.com/document/api/266/101621)
-
[DescribeJustInTimeTranscodeTemplates](https://cloud.tencent.com/document/api/266/101620)
-
[ModifyJustInTimeTranscodeTemplate](https://cloud.tencent.com/document/api/266/101619)

新增数据结构:

-
[JustInTimeTranscodeTemplate](https://cloud.tencent.com/document/api/266/31773#JustInTimeTranscodeTemplate)
-
[VideoConfigureInfo](https://cloud.tencent.com/document/api/266/31773#VideoConfigureInfo)
-
[VideoConfigureInfoForUpdate](https://cloud.tencent.com/document/api/266/31773#VideoConfigureInfoForUpdate)
-
[WatermarkConfigureData](https://cloud.tencent.com/document/api/266/31773#WatermarkConfigureData)
-
[WatermarkConfigureInfo](https://cloud.tencent.com/document/api/266/31773#WatermarkConfigureInfo)
-
[WatermarkConfigureInfoForUpdate](https://cloud.tencent.com/document/api/266/31773#WatermarkConfigureInfoForUpdate)

#### 声音复刻(vrs) 版本:2020-08-24

##### 第 4 次发布

发布时间:2023-11-16 01:37:19

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

改善已有的文档。

新增接口:

- [GetVRSVoiceTypes](https://cloud.tencent.com/document/api/1283/101623)

新增数据结构:

-
[VoiceTypeInfo](https://cloud.tencent.com/document/api/1283/90065#VoiceTypeInfo)
-
[VoiceTypeListData](https://cloud.tencent.com/document/api/1283/90065#VoiceTypeListData)

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

#### 云防火墙(cfw) 版本:2019-09-04

##### 第 48 次发布

发布时间:2023-11-15 01:17:59

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

改善已有的文档。

修改接口:

-
[CreateAddressTemplate](https://cloud.tencent.com/document/api/1132/95034)

    -   新增入参:ProtocolType

-
[DescribeAddressTemplateList](https://cloud.tencent.com/document/api/1132/97918)

    -   新增入参:TemplateType, TemplateId

    -   新增出参:IpTemplateCount, DomainTemplateCount, PortTemplateCount

-
[ModifyAddressTemplate](https://cloud.tencent.com/document/api/1132/97919)

    -   新增入参:ProtocolType

修改数据结构:

-
[EdgeIpInfo](https://cloud.tencent.com/document/api/1132/49071#EdgeIpInfo)

    -   新增成员:Domain

-
[TemplateListInfo](https://cloud.tencent.com/document/api/1132/49071#TemplateListInfo)

    -   新增成员:TemplateId, ProtocolType

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

##### 第 22 次发布

发布时间:2023-11-15 01:23:10

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

改善已有的文档。

修改数据结构:

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

    -   <font color="#dd0000">**修改成员**:</font>AppId, UIN, UserName

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

- <font color="#dd0000">**修改成员**:</font>Port, NoHandleCount, Level,
Component, RecentTime, FirstTime, AffectAssetCount, Id, From, Index,
VULType, VULName, CVE, Describe, Payload, AppName, References,
AppVersion, VULURL, Nick, AppId, Uin, Fix, EMGCVulType

#### 数据湖计算 DLC(dlc) 版本:2021-01-25

##### 第 74 次发布

发布时间:2023-11-15 01:31:42

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

改善已有的文档。

修改数据结构:

-
[DataEngineInfo](https://cloud.tencent.com/document/api/1342/53778#DataEngineInfo)

    -   新增成员:EngineGeneration, EngineTypeDetail

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

##### 第 19 次发布

发布时间:2023-11-15 01:36:06

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

改善已有的文档。

修改接口:

-   [ResumeMigrateJob](https://cloud.tencent.com/document/api/571/82075)

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

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

#### 高性能应用服务(hai) 版本:2023-08-12

##### 第 2 次发布

发布时间:2023-11-15 01:43:11

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

改善已有的文档。

新增接口:

-
[TerminateInstances](https://cloud.tencent.com/document/api/1721/101581)

#### 移动应用安全(ms) 版本:2018-04-08

##### 第 19 次发布

发布时间:2023-11-15 02:10:37

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

改善已有的文档。

修改数据结构:

- [PlanInfo](https://cloud.tencent.com/document/api/283/17759#PlanInfo)

    -   新增成员:SetFile, FileSign, AntiRoot

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

##### 第 119 次发布

发布时间:2023-11-15 02:11:27

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

改善已有的文档。

修改接口:

-   [IDCardOCR](https://cloud.tencent.com/document/api/866/33524)

    -   新增入参:EnableReflectDetail

    -   新增出参:ReflectDetailInfos

新增数据结构:

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

#### 安全运营中心(ssa) 版本:2018-06-08

##### 第 21 次发布

发布时间:2023-11-15 02:18:28

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

改善已有的文档。

<font color="#dd0000">**删除接口**:</font>

-   DescribeAssetsMappingList
-   DescribeSafetyEventList
-   SaDivulgeDataQueryPub

<font color="#dd0000">**删除数据结构**:</font>

-   DataAssetMapping
-   DataEvent
-   SaDivulgeDataQueryPub
-   SaDivulgeDataQueryPubList

#### 消息队列 TDMQ(tdmq) 版本:2020-02-17

##### 第 90 次发布

发布时间:2023-11-15 02:25:53

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

改善已有的文档。

新增接口:

-
[DeleteProClusters](https://cloud.tencent.com/document/api/1179/101582)

#### 设备安全(tds) 版本:2022-08-01

##### 第 3 次发布

发布时间:2023-11-15 02:26:59

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

改善已有的文档。

修改接口:

-
[DescribeFraudUltimate](https://cloud.tencent.com/document/api/1628/83695)

    -   新增出参:Unionid

#### 微服务引擎 TSE(tse) 版本:2020-12-07

##### 第 51 次发布

发布时间:2023-11-15 02:34:06

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

改善已有的文档。

新增接口:

-
[DescribeCloudNativeAPIGatewayUpstream](https://cloud.tencent.com/document/api/1364/101586)
-
[DescribeUpstreamHealthCheckConfig](https://cloud.tencent.com/document/api/1364/101585)
-
[ModifyUpstreamNodeStatus](https://cloud.tencent.com/document/api/1364/101584)
-
[UpdateUpstreamHealthCheckConfig](https://cloud.tencent.com/document/api/1364/101583)

新增数据结构:

-
[KongActiveHealthCheck](https://cloud.tencent.com/document/api/1364/54942#KongActiveHealthCheck)
-
[KongPassiveHealthCheck](https://cloud.tencent.com/document/api/1364/54942#KongPassiveHealthCheck)
-
[KongUpstreamList](https://cloud.tencent.com/document/api/1364/54942#KongUpstreamList)
-
[KongUpstreamPreview](https://cloud.tencent.com/document/api/1364/54942#KongUpstreamPreview)
-
[UpstreamHealthCheckConfig](https://cloud.tencent.com/document/api/1364/54942#UpstreamHealthCheckConfig)

#### 云点播(vod) 版本:2018-07-17

##### 第 169 次发布

发布时间:2023-11-15 02:37:10

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

改善已有的文档。

修改数据结构:

-
[OutputAudioStream](https://cloud.tencent.com/document/api/266/31773#OutputAudioStream)

    -   新增成员:Bitrate

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

##### 第 180 次发布

发布时间:2023-11-15 02:39:18

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

改善已有的文档。

修改接口:

-
[ModifyCustomerGatewayAttribute](https://cloud.tencent.com/document/api/215/17509)

    -   新增入参:BgpAsn

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

##### 第 4 次发布

发布时间:2023-11-15 02:45:47

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

改善已有的文档。

修改接口:

-
[AddAlarmProcessRecord](https://cloud.tencent.com/document/api/1693/101492)

- 新增入参:RecordSet, WorkspaceId, ApplicationToken, ApplicationId,
ExtendOne

    -   新增出参:Result

-
[BatchCreateDevice](https://cloud.tencent.com/document/api/1693/101491)

    -   新增入参:WorkspaceId, AddDeviceSet, ApplicationToken

    -   新增出参:Result

-   [BatchKillAlarm](https://cloud.tencent.com/document/api/1693/101490)

- 新增入参:BeginTime, EndTime, StatusSet, WorkspaceId, UserId, UserName,
ApplicationToken, ProcessorId, AlarmTypeSet, LevelSet, WIDSet, IdSet,
Desc

    -   新增出参:Result

-
[BatchReportAppMessage](https://cloud.tencent.com/document/api/1693/101489)

    -   新增入参:WorkspaceId, ApplicationToken, ReportSet

    -   新增出参:Result

-
[ChangeAlarmStatus](https://cloud.tencent.com/document/api/1693/101488)

- 新增入参:Id, Status, ProcessTime, ProcessType, WorkspaceId, UserId,
UserName, ApplicationToken, Processor, ProcessDescription,
ProcessExtend, ExtendOne, ApplicationId

    -   新增出参:Result

- [ControlCameraPTZ](https://cloud.tencent.com/document/api/1693/101468)

    -   新增入参:WID, CMD, WorkspaceId, ApplicationToken

    -   新增出参:Result

-   [ControlDevice](https://cloud.tencent.com/document/api/1693/101487)

    -   新增入参:WorkspaceId, WIDSet, ControlData, ApplicationToken

    -   新增出参:Result

-
[CreateApplicationToken](https://cloud.tencent.com/document/api/1693/101495)

    -   新增入参:ApplicationId, Nonce, TenantId, RequestTime, Signature

    -   新增出参:Result

-
[DescribeActionList](https://cloud.tencent.com/document/api/1693/101486)

- 新增入参:WorkspaceId, PageNumber, PageSize, ApplicationToken, ActionType,
IdSet

    -   新增出参:Result

-
[DescribeAdministrationByTag](https://cloud.tencent.com/document/api/1693/101461)

    -   新增入参:ApplicationToken, WorkspaceId, Tag

    -   新增出参:Result

-
[DescribeAlarmLevelList](https://cloud.tencent.com/document/api/1693/101485)

    -   新增入参:WorkspaceId, ApplicationToken

    -   新增出参:Result

-
[DescribeAlarmList](https://cloud.tencent.com/document/api/1693/101484)

- 新增入参:BeginTime, EndTime, PageNumber, PageSize, WorkspaceId,
ApplicationToken, Statuses, AlarmTypeSet, LevelSet, IdSet, AppIdSet,
WIDSet, SpaceCodeSet, ExtendOne, ExtendTwo, ProcessorSet, GroupIdSet

    -   新增出参:Result

-
[DescribeAlarmTypeList](https://cloud.tencent.com/document/api/1693/101483)

    -   新增入参:WorkspaceId, ApplicationToken, ParentType

    -   新增出参:Result

-
[DescribeBuildingList](https://cloud.tencent.com/document/api/1693/101512)

    -   新增入参:WorkspaceId, ApplicationToken, HasModel, SpaceCodes

    -   新增出参:Result

-
[DescribeBuildingModel](https://cloud.tencent.com/document/api/1693/101511)

    -   新增入参:BuildingId, WorkspaceId, ApplicationToken

    -   新增出参:Result

-
[DescribeBuildingProfile](https://cloud.tencent.com/document/api/1693/101510)

    -   新增入参:BuildingId, WorkspaceId, ApplicationToken

    -   新增出参:Result

-
[DescribeCameraExtendInfo](https://cloud.tencent.com/document/api/1693/101467)

    -   新增入参:WID, WorkspaceId, ApplicationToken

    -   新增出参:Result

-
[DescribeCityWorkspaceList](https://cloud.tencent.com/document/api/1693/101459)

    -   新增入参:AdministrativeCodeSet, ApplicationToken

    -   新增出参:Result

-
[DescribeDeviceList](https://cloud.tencent.com/document/api/1693/101482)

- 新增入参:WorkspaceId, PageNumber, PageSize, ApplicationToken,
DeviceTypeSet, ProductIdSet, TagIdSet, SpaceCodeSet, DeviceTagSet,
WIDSet, Field, GroupIdSet

    -   新增出参:Result

-
[DescribeDeviceShadowList](https://cloud.tencent.com/document/api/1693/101481)

    -   新增入参:TagIdSet

-
[DescribeDeviceStatusList](https://cloud.tencent.com/document/api/1693/101480)

- 新增入参:WorkspaceId, ApplicationToken, PageNumber, PageSize,
DeviceTypeSet, ProductIdSet, TagIdSet, SpaceCodeSet, WIDSet,
DeviceTagSet, DeviceStatusSet, StatusSet, IsAlive

    -   新增出参:Result

-
[DescribeDeviceStatusStat](https://cloud.tencent.com/document/api/1693/101479)

- 新增入参:Level, WorkspaceId, ApplicationToken, SpaceCodeSet, DeviceTypeSet

    -   新增出参:Result

-
[DescribeDeviceTagList](https://cloud.tencent.com/document/api/1693/101478)

    -   新增入参:WorkspaceId, PageNumber, PageSize, ApplicationToken

    -   新增出参:Result

-
[DescribeDeviceTypeList](https://cloud.tencent.com/document/api/1693/101477)

    -   新增入参:WorkspaceId, ApplicationToken, Flag

    -   新增出参:Result

-
[DescribeEdgeApplicationToken](https://cloud.tencent.com/document/api/1693/97957)

    -   新增入参:ApplicationToken, Refresh

    -   新增出参:Result

-
[DescribeElementProfilePage](https://cloud.tencent.com/document/api/1693/101509)

- 新增入参:BuildingId, PageNumber, PageSize, WorkspaceId, ApplicationToken,
ParentElementIds, Level, SpaceTypeCode, EntityTypes, IncludeDelete,
StartTime, EndTime

    -   新增出参:Result

-
[DescribeElementProfileTree](https://cloud.tencent.com/document/api/1693/101508)

- 新增入参:BuildingId, WorkspaceId, ApplicationToken, ElementId, Level,
SpaceTypeCode

    -   新增出参:Result

-
[DescribeEventList](https://cloud.tencent.com/document/api/1693/101476)

- 新增入参:WorkspaceId, PageNumber, PageSize, ApplicationToken, TriggerType,
IdSet

    -   新增出参:Result

-
[DescribeFileDownloadURL](https://cloud.tencent.com/document/api/1693/101494)

    -   新增入参:WorkspaceId, FileId, ApplicationToken

    -   新增出参:Result

-
[DescribeFileUploadURL](https://cloud.tencent.com/document/api/1693/101493)

- 新增入参:WorkspaceId, FileName, FileSize, ApplicationToken, FileMD5,
SaveType, FileExpireTime, NoExpireFlag

    -   新增出参:Result

-
[DescribeInterfaceList](https://cloud.tencent.com/document/api/1693/97956)

- 新增入参:ApplicationToken, PageNumber, PageSize, Keyword, Style, Type

    -   新增出参:Result

-
[DescribeLinkRuleList](https://cloud.tencent.com/document/api/1693/101475)

- 新增入参:WorkspaceId, PageNumber, PageSize, ApplicationToken, TriggerType,
IdSet

    -   新增出参:Result

-
[DescribeModelList](https://cloud.tencent.com/document/api/1693/101474)

- 新增入参:WorkspaceId, PageNumber, PageSize, ApplicationToken,
DeviceTypeSet, ProductIdSet, ModelIdSet

    -   新增出参:Result

-
[DescribeProductList](https://cloud.tencent.com/document/api/1693/101473)

- 新增入参:WorkspaceId, PageNumber, PageSize, ApplicationToken,
DeviceTypeSet, ProductIdSet, ModelIdSet

    -   新增出参:Result

-
[DescribePropertyList](https://cloud.tencent.com/document/api/1693/101507)

    -   新增入参:BuildingId, ElementId, WorkspaceId, ApplicationToken

    -   新增出参:Result

-
[DescribeRuleDetail](https://cloud.tencent.com/document/api/1693/101472)

    -   新增入参:WorkspaceId, Id, ApplicationToken

    -   新增出参:Result

-
[DescribeSceneList](https://cloud.tencent.com/document/api/1693/101506)

    -   新增入参:WorkspaceId, ApplicationToken

    -   新增出参:Result

-
[DescribeSpaceDeviceIdList](https://cloud.tencent.com/document/api/1693/101505)

- 新增入参:ElementIds, IsCascade, WorkspaceId, PageNumber, PageSize,
ApplicationToken

    -   新增出参:Result

-
[DescribeSpaceDeviceRelationList](https://cloud.tencent.com/document/api/1693/101504)

- 新增入参:ElementIds, IsCascade, WorkspaceId, PageNumber, PageSize,
ApplicationToken

    -   新增出参:Result

-
[DescribeSpaceInfoByDeviceId](https://cloud.tencent.com/document/api/1693/101503)

    -   新增入参:DeviceId, WorkspaceId, ApplicationToken

    -   新增出参:Result

-
[DescribeSpaceRelationByDeviceId](https://cloud.tencent.com/document/api/1693/101502)

    -   新增入参:DeviceId, WorkspaceId, ApplicationToken

    -   新增出参:Result

-
[DescribeSpaceTypeList](https://cloud.tencent.com/document/api/1693/101501)

    -   新增入参:WorkspaceId, PageNumber, PageSize, ApplicationToken

    -   新增出参:Result

-
[DescribeTenantBuildingCountAndArea](https://cloud.tencent.com/document/api/1693/101500)

    -   新增入参:WorkspaceIdList, ApplicationToken

    -   新增出参:Result

-
[DescribeVideoCloudRecord](https://cloud.tencent.com/document/api/1693/101466)

    -   新增入参:WID, StartTime, EndTime, WorkspaceId, ApplicationToken

    -   新增出参:Result

-
[DescribeVideoLiveStream](https://cloud.tencent.com/document/api/1693/101465)

    -   新增入参:WID, Protocol, WorkspaceId, ApplicationToken, StreamId, Env

    -   新增出参:Result

-
[DescribeWorkSpaceBuildingCountAndArea](https://cloud.tencent.com/document/api/1693/101499)

    -   新增入参:WorkspaceIdList, ApplicationToken

    -   新增出参:Result

-
[DescribeWorkspaceList](https://cloud.tencent.com/document/api/1693/97955)

    -   新增入参:ApplicationToken, WorkspaceId

    -   新增出参:Result

- [ModifyDeviceName](https://cloud.tencent.com/document/api/1693/101471)

    -   新增入参:WorkspaceId, Set, ApplicationToken

    -   新增出参:Result

- [ReportAppMessage](https://cloud.tencent.com/document/api/1693/101470)

- 新增入参:WorkspaceId, Profile, ReportTs, Properties, ApplicationToken,
EventSet, ServiceSet, ExtendTwo, Echo

    -   新增出参:Result

-
[StopVideoStreaming](https://cloud.tencent.com/document/api/1693/101463)

    -   新增入参:Stream, WID, WorkspaceId, ApplicationToken

    -   新增出参:Result

-
[UpdateWorkspaceParkAttributes](https://cloud.tencent.com/document/api/1693/101458)

    -   新增入参:WorkspaceId, ApplicationToken, ParkName, ParkNum

    -   新增出参:Result

新增数据结构:

-   [Action](https://cloud.tencent.com/document/api/1693/97961#Action)
-
[ActionDetail](https://cloud.tencent.com/document/api/1693/97961#ActionDetail)
-
[ActionObj](https://cloud.tencent.com/document/api/1693/97961#ActionObj)
-
[AddDeviceInfo](https://cloud.tencent.com/document/api/1693/97961#AddDeviceInfo)
-
[AdministrationData](https://cloud.tencent.com/document/api/1693/97961#AdministrationData)
-
[AdministrativeDetail](https://cloud.tencent.com/document/api/1693/97961#AdministrativeDetail)
-
[AlarmInfo](https://cloud.tencent.com/document/api/1693/97961#AlarmInfo)
-
[AlarmLevelInfo](https://cloud.tencent.com/document/api/1693/97961#AlarmLevelInfo)
-
[AlarmTypeDetailInfo](https://cloud.tencent.com/document/api/1693/97961#AlarmTypeDetailInfo)
-
[AlarmTypeInfo](https://cloud.tencent.com/document/api/1693/97961#AlarmTypeInfo)
-
[ApiContent](https://cloud.tencent.com/document/api/1693/97961#ApiContent)
-   [ApiInfo](https://cloud.tencent.com/document/api/1693/97961#ApiInfo)
-
[ApiInfoList](https://cloud.tencent.com/document/api/1693/97961#ApiInfoList)
-
[ApplicationTokenInfo](https://cloud.tencent.com/document/api/1693/97961#ApplicationTokenInfo)
-
[BatchCreateDeviceRes](https://cloud.tencent.com/document/api/1693/97961#BatchCreateDeviceRes)
-
[BatchReportAppMessageRes](https://cloud.tencent.com/document/api/1693/97961#BatchReportAppMessageRes)
-
[BuildingListRes](https://cloud.tencent.com/document/api/1693/97961#BuildingListRes)
-
[BuildingModel](https://cloud.tencent.com/document/api/1693/97961#BuildingModel)
-
[BuildingModelRes](https://cloud.tencent.com/document/api/1693/97961#BuildingModelRes)
-
[BuildingProfile](https://cloud.tencent.com/document/api/1693/97961#BuildingProfile)
-
[BuildingProfileRes](https://cloud.tencent.com/document/api/1693/97961#BuildingProfileRes)
-
[CameraExtendInfoRes](https://cloud.tencent.com/document/api/1693/97961#CameraExtendInfoRes)
-
[ControlDeviceRes](https://cloud.tencent.com/document/api/1693/97961#ControlDeviceRes)
-
[ControlDeviceSet](https://cloud.tencent.com/document/api/1693/97961#ControlDeviceSet)
-
[CreateDeviceFailed](https://cloud.tencent.com/document/api/1693/97961#CreateDeviceFailed)
-
[CreateDeviceSucceeded](https://cloud.tencent.com/document/api/1693/97961#CreateDeviceSucceeded)
-
[CustomField](https://cloud.tencent.com/document/api/1693/97961#CustomField)
-
[CustomFieldInfo](https://cloud.tencent.com/document/api/1693/97961#CustomFieldInfo)
-
[DescribeActionListRes](https://cloud.tencent.com/document/api/1693/97961#DescribeActionListRes)
-
[DescribeAdministrationByTagRes](https://cloud.tencent.com/document/api/1693/97961#DescribeAdministrationByTagRes)
-
[DescribeAlarmLevelListRes](https://cloud.tencent.com/document/api/1693/97961#DescribeAlarmLevelListRes)
-
[DescribeAlarmListRes](https://cloud.tencent.com/document/api/1693/97961#DescribeAlarmListRes)
-
[DescribeAlarmTypeListRes](https://cloud.tencent.com/document/api/1693/97961#DescribeAlarmTypeListRes)
-
[DescribeCityWorkspaceListRes](https://cloud.tencent.com/document/api/1693/97961#DescribeCityWorkspaceListRes)
-
[DescribeDeviceListRes](https://cloud.tencent.com/document/api/1693/97961#DescribeDeviceListRes)
-
[DescribeEventListRes](https://cloud.tencent.com/document/api/1693/97961#DescribeEventListRes)
-
[DescribeLinkRuleListRes](https://cloud.tencent.com/document/api/1693/97961#DescribeLinkRuleListRes)
-
[DeviceDataInfo](https://cloud.tencent.com/document/api/1693/97961#DeviceDataInfo)
-
[DeviceLocation](https://cloud.tencent.com/document/api/1693/97961#DeviceLocation)
-
[DeviceModifyInfo](https://cloud.tencent.com/document/api/1693/97961#DeviceModifyInfo)
-
[DeviceSpaceInfo](https://cloud.tencent.com/document/api/1693/97961#DeviceSpaceInfo)
-
[DeviceSpaceInfoRes](https://cloud.tencent.com/document/api/1693/97961#DeviceSpaceInfoRes)
-
[DeviceStatusInfo](https://cloud.tencent.com/document/api/1693/97961#DeviceStatusInfo)
-
[DeviceStatusRes](https://cloud.tencent.com/document/api/1693/97961#DeviceStatusRes)
-
[DeviceStatusStatRes](https://cloud.tencent.com/document/api/1693/97961#DeviceStatusStatRes)
-
[DeviceTagInfo](https://cloud.tencent.com/document/api/1693/97961#DeviceTagInfo)
-
[DeviceTagRes](https://cloud.tencent.com/document/api/1693/97961#DeviceTagRes)
-
[DeviceType](https://cloud.tencent.com/document/api/1693/97961#DeviceType)
-
[DeviceTypeOverview](https://cloud.tencent.com/document/api/1693/97961#DeviceTypeOverview)
-
[DeviceTypeSet](https://cloud.tencent.com/document/api/1693/97961#DeviceTypeSet)
-
[ElementCoordinates](https://cloud.tencent.com/document/api/1693/97961#ElementCoordinates)
-
[ElementProfile](https://cloud.tencent.com/document/api/1693/97961#ElementProfile)
-
[ElementProfilePageRes](https://cloud.tencent.com/document/api/1693/97961#ElementProfilePageRes)
-
[ElementProfileTreeNode](https://cloud.tencent.com/document/api/1693/97961#ElementProfileTreeNode)
-
[ElementProfileTreeRes](https://cloud.tencent.com/document/api/1693/97961#ElementProfileTreeRes)
-
[ElementProperty](https://cloud.tencent.com/document/api/1693/97961#ElementProperty)
-
[ElementPropertyRes](https://cloud.tencent.com/document/api/1693/97961#ElementPropertyRes)
-
[ElementTranslate](https://cloud.tencent.com/document/api/1693/97961#ElementTranslate)
- [EmptyRes](https://cloud.tencent.com/document/api/1693/97961#EmptyRes)
-   [Event](https://cloud.tencent.com/document/api/1693/97961#Event)
-
[EventDetail](https://cloud.tencent.com/document/api/1693/97961#EventDetail)
- [EventObj](https://cloud.tencent.com/document/api/1693/97961#EventObj)
-
[FileDownloadURL](https://cloud.tencent.com/document/api/1693/97961#FileDownloadURL)
- [FileInfo](https://cloud.tencent.com/document/api/1693/97961#FileInfo)
-
[FileUploadURL](https://cloud.tencent.com/document/api/1693/97961#FileUploadURL)
-
[HandleRecordInfo](https://cloud.tencent.com/document/api/1693/97961#HandleRecordInfo)
-
[HandlerPersonInfo](https://cloud.tencent.com/document/api/1693/97961#HandlerPersonInfo)
- [LinkRule](https://cloud.tencent.com/document/api/1693/97961#LinkRule)
-
[LinkRuleInfo](https://cloud.tencent.com/document/api/1693/97961#LinkRuleInfo)
-
[MessageProfile](https://cloud.tencent.com/document/api/1693/97961#MessageProfile)
-
[ModelInfo](https://cloud.tencent.com/document/api/1693/97961#ModelInfo)
- [ModelSet](https://cloud.tencent.com/document/api/1693/97961#ModelSet)
-
[ProcessRecordInfo](https://cloud.tencent.com/document/api/1693/97961#ProcessRecordInfo)
-
[ProductInfo](https://cloud.tencent.com/document/api/1693/97961#ProductInfo)
-
[ProductSet](https://cloud.tencent.com/document/api/1693/97961#ProductSet)
-   [RawInfo](https://cloud.tencent.com/document/api/1693/97961#RawInfo)
-
[RecordInfo](https://cloud.tencent.com/document/api/1693/97961#RecordInfo)
-
[RelatedProduct](https://cloud.tencent.com/document/api/1693/97961#RelatedProduct)
-
[ReportAppMessage](https://cloud.tencent.com/document/api/1693/97961#ReportAppMessage)
-
[ReportImg](https://cloud.tencent.com/document/api/1693/97961#ReportImg)
-
[ReportMsgRes](https://cloud.tencent.com/document/api/1693/97961#ReportMsgRes)
-
[RuleDetailRes](https://cloud.tencent.com/document/api/1693/97961#RuleDetailRes)
-
[SceneInfo](https://cloud.tencent.com/document/api/1693/97961#SceneInfo)
-
[SceneListRes](https://cloud.tencent.com/document/api/1693/97961#SceneListRes)
-
[SpaceDataListStatsRes](https://cloud.tencent.com/document/api/1693/97961#SpaceDataListStatsRes)
-
[SpaceDataStats](https://cloud.tencent.com/document/api/1693/97961#SpaceDataStats)
-
[SpaceDataTotalStatsRes](https://cloud.tencent.com/document/api/1693/97961#SpaceDataTotalStatsRes)
-
[SpaceDeviceIdListRes](https://cloud.tencent.com/document/api/1693/97961#SpaceDeviceIdListRes)
-
[SpaceDeviceRelation](https://cloud.tencent.com/document/api/1693/97961#SpaceDeviceRelation)
-
[SpaceDeviceRelationRes](https://cloud.tencent.com/document/api/1693/97961#SpaceDeviceRelationRes)
-
[SpaceInfo](https://cloud.tencent.com/document/api/1693/97961#SpaceInfo)
-
[SpaceRelation](https://cloud.tencent.com/document/api/1693/97961#SpaceRelation)
-
[SpaceRelationRes](https://cloud.tencent.com/document/api/1693/97961#SpaceRelationRes)
-
[SpaceType](https://cloud.tencent.com/document/api/1693/97961#SpaceType)
-
[SpaceTypeListRes](https://cloud.tencent.com/document/api/1693/97961#SpaceTypeListRes)
-
[StatDeviceType](https://cloud.tencent.com/document/api/1693/97961#StatDeviceType)
-
[StatLevel](https://cloud.tencent.com/document/api/1693/97961#StatLevel)
-
[VideoCloudRecordRes](https://cloud.tencent.com/document/api/1693/97961#VideoCloudRecordRes)
-
[VideoRecordStreamRes](https://cloud.tencent.com/document/api/1693/97961#VideoRecordStreamRes)
-
[WorkspaceInfo](https://cloud.tencent.com/document/api/1693/97961#WorkspaceInfo)
-
[WorkspaceInfoList](https://cloud.tencent.com/document/api/1693/97961#WorkspaceInfoList)

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

#### Web 应用防火墙(waf) 版本:2018-01-25

##### 第 73 次发布

发布时间:2023-11-14 15:28:58

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

改善已有的文档。

新增接口:

-
[DescribeCCAutoStatus](https://cloud.tencent.com/document/api/627/101568)
-
[UpsertCCAutoStatus](https://cloud.tencent.com/document/api/627/101567)

<font color="#dd0000">**删除接口**:</font>

-   ModifyWafAutoDenyStatus

修改接口:

- [DescribeCCRuleList](https://cloud.tencent.com/document/api/627/97636)

    -   新增出参:Data

新增数据结构:

-
[CCRuleItems](https://cloud.tencent.com/document/api/627/53609#CCRuleItems)
-
[CCRuleLists](https://cloud.tencent.com/document/api/627/53609#CCRuleLists)

修改数据结构:

-   [ApiPkg](https://cloud.tencent.com/document/api/627/53609#ApiPkg)

    -   <font color="#dd0000">**删除成员**:</font>APICPWaf, APINPWaf

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
…ector-contrib/pkg/golden to v0.89.0 (open-telemetry#29487)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[github.com/open-telemetry/opentelemetry-collector-contrib/pkg/golden](https://togithub.com/open-telemetry/opentelemetry-collector-contrib)
| require | minor | `v0.0.0-00010101000000-000000000000` -> `v0.89.0` |

---

> [!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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
…try#29488)

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

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [github.com/SAP/go-hdb](https://togithub.com/SAP/go-hdb) | require |
minor | `v1.5.10` -> `v1.6.1` |

---

> [!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.6.1`](https://togithub.com/SAP/go-hdb/blob/HEAD/RELEASENOTES.md#v161)

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

-   renamed sqlscript SplitFunc to ScanFunc

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

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

##### v1.6.1

-   renamed sqlscript SplitFunc to ScanFunc

##### New features

-   Added experimental sqlscript package

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: opentelemetrybot <[email protected]>
@RoryCrispin RoryCrispin force-pushed the compile-logstransformprocessor branch from 288d064 to 51445aa Compare November 24, 2023 09:38
@CLAassistant
Copy link

CLAassistant commented Nov 24, 2023

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you all sign our Contributor License Agreement before we can accept your contribution.
2 out of 13 committers have signed the CLA.

✅ atoulme
✅ RoryCrispin
❌ Alex Boten
❌ graphaelli
❌ haoqixu
❌ crobert-1
❌ JaredTan95
❌ kkujawa-sumo
❌ adrielp
❌ philchia
❌ ItsLastDay
❌ karmingc
❌ dloucasfx


Alex Boten seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account.
You have signed the CLA already but the status is still pending? Let us recheck it.

@RoryCrispin RoryCrispin merged commit 021be7e into main Nov 24, 2023
36 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.