Skip to content

Commit

Permalink
Bump the otel-collector group with 4 updates (#4608)
Browse files Browse the repository at this point in the history
Bumps the otel-collector group with 4 updates:
[github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger](https://github.com/open-telemetry/opentelemetry-collector-contrib),
[go.opentelemetry.io/collector/config/configgrpc](https://github.com/open-telemetry/opentelemetry-collector),
[go.opentelemetry.io/collector/config/confighttp](https://github.com/open-telemetry/opentelemetry-collector)
and
[go.opentelemetry.io/collector/receiver/otlpreceiver](https://github.com/open-telemetry/opentelemetry-collector).

Updates
`github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger`
from 0.81.0 to 0.82.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-collector-contrib/releases">github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger's
releases</a>.</em></p>
<blockquote>
<h2>v0.82.0</h2>
<p>The OpenTelemetry Collector Contrib contains everything in the <a
href="https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.82.0">opentelemetry-collector
release</a>, be sure to check the release notes there as well.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/CHANGELOG.md">github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger's
changelog</a>.</em></p>
<blockquote>
<h2>v0.82.0</h2>
<h3>🛑 Breaking changes 🛑</h3>
<ul>
<li>
<p><code>receiver/awsfirehose</code>: Change the type of
<code>Config.AccessKey</code> to be <code>configopaque.String</code> (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/17273">#17273</a>)</p>
</li>
<li>
<p><code>receiver/cloudfoundry</code>: Change the type of
<code>Config.UAA.Password</code> to be <code>configopaque.String</code>
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/17273">#17273</a>)</p>
</li>
<li>
<p><code>exporter/datasetexporter</code>: Remove temporary client side
attribute aggregation and corresponding traces.max_wait and
traces.aggregate config options which are now redundant. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/20660">#20660</a>)
This pull request removes the following attributes from the DataSet
trace events: services,
span_count, error_count. Those attributes were populated on the client
side as part of the client
side aggregation code. This client side aggregation was meant as a
temporary solution until a
proper solution is implement on the server side. Being a temporary
solution meant it had many
edge cases and would only work under specific and limited circumstances
(all spans which belong
to a trace are part of the same batch received by the plugin).</p>
<p>Corresponding config options (traces.aggregate and traces.max_wait)
which are not redundant and
unused have also been removed.</p>
</li>
<li>
<p><code>mysqlreceiver</code>: removing
<code>mysql.locked_connects</code> metric which is replaced by
<code>mysql.connection.errors</code> (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/23211">#23211</a>)</p>
</li>
<li>
<p><code>pkg/ottl</code>: Allow access to the metrics slice in the
metric context (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/24446">#24446</a>)
This is only a breaking change for users using OTTL in custom
components. For all Contrib components this is an enhancement.</p>
</li>
<li>
<p><code>pkg/stanza</code>: Make fileconsumer.PositionalScanner internal
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/23999">#23999</a>)</p>
</li>
<li>
<p><code>pkg/stanza</code>: Make fileconsumer.Fingerprint internal (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/23998">#23998</a>)</p>
</li>
<li>
<p><code>receiver/httpcheck</code>: Fail fast on endpoint missing scheme
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/23020">#23020</a>)
Previously, when configured with an endpoint without HTTP/HTTPS scheme
like &quot;opentelemetry.io&quot;,
the receiver would start correctly, but fail to check the endpoint,
producing the <code>httpcheck.error</code>
metric on every collection interval. After this change, the receiver
fails to start, writing
an error log saying that you need to provide a scheme in the
endpoint.</p>
</li>
<li>
<p><code>receiver/jmx</code>: Change the types of
<code>Config.{Password,KeystorePassword,TruststorePassword}</code> to be
<code>configopaque.String</code> (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/17273">#17273</a>)</p>
</li>
<li>
<p><code>httpcheckreceiver</code>: support scraping multiple targets (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/18823">#18823</a>)</p>
</li>
<li>
<p><code>resourcedetectionprocessor</code>: Disable <code>host.id</code>
by default on the <code>system</code> detector. This restores the
behavior prior to v0.72.0 when using the <code>system</code> detector
together with other detectors that set <code>host.id</code> (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/21233">#21233</a>)
To re-enable <code>host.id</code> on the <code>system</code> detector
set <code>system::resource_attributes::host.id::enabled</code> to
<code>true</code>:</p>
<pre><code>resourcedetection:
  detectors: [system]
  system:
    resource_attributes:
      host.id:
        enabled: true
</code></pre>
</li>
<li>
<p><code>receiver/nsxt</code>: Change the type of
<code>Config.Password</code> to be <code>configopaque.String</code> (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/17273">#17273</a>)</p>
</li>
<li>
<p><code>receiver/podman</code>: Change the type of
<code>Config.SSHPassphrase</code> to be <code>configopaque.String</code>
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/17273">#17273</a>)</p>
</li>
<li>
<p><code>receiver/postgresql</code>: Change the type of
<code>Config.Password</code> to be <code>configopaque.String</code> (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/17273">#17273</a>)</p>
</li>
<li>
<p><code>prometheusreciever</code>: Remove unused buffer_period and
buffer_count configuration options (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/24258">#24258</a>)</p>
</li>
<li>
<p><code>prometheusreceiver</code>: Add the
<code>trim_metric_suffixes</code> configuration option to allow enable
metric suffix trimming. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/21743">#21743</a>,
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/8950">#8950</a>)
When enabled, suffixes for unit and type are trimmed from metric names.
If you previously enabled the
<code>pkg.translator.prometheus.NormalizeName</code>
feature gate, you will need to enable this option to have suffixes
trimmed.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector-contrib/commit/79513bac50520f5c9ccb3341996f35f5fd45b10c"><code>79513ba</code></a>
[chore] Prepare release 0.82.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/24667">#24667</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector-contrib/commit/66bac88f55db4052116166f7cb4643912fc109b8"><code>66bac88</code></a>
[chore] make update-otel (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/24661">#24661</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector-contrib/commit/1c292e882524a225f4c907d3afdd5a9d6e22d9b3"><code>1c292e8</code></a>
[pkg/translator/prometheusremotewrite] Improve performance of conversion
to P...</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector-contrib/commit/158ee0e040b6655baf91396c03dddb6ee079cbed"><code>158ee0e</code></a>
[chore] Update tests to include scraper settings (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/24653">#24653</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector-contrib/commit/b44a1ba0c1fd4d74f7eafcb050039d3e270605eb"><code>b44a1ba</code></a>
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/24564">GH-24564</a>
tailsamplingprocessor added invert_match rule for numeric … (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/24564">#24564</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector-contrib/commit/015d8dbb7e62c15dd93f97aaabe0879afb545076"><code>015d8db</code></a>
[translator/zipkin] stop dropping error tags in Zipkin translator (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/24547">#24547</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector-contrib/commit/d3086c7daedf1d1317d77205e2bcaf2c8f90ade2"><code>d3086c7</code></a>
[chore] update CONTRIBUTING to match codeowners generation step (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/24556">#24556</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector-contrib/commit/3e1037a2afd9e079ff8fab02755ea95c0f38a1e4"><code>3e1037a</code></a>
Add ottl len converter (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/24420">#24420</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector-contrib/commit/915f9631d951a79660df955f7d3c53922e69cb4a"><code>915f963</code></a>
[exporter/loki] Add setting default_labels_enabled to the config (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/23863">#23863</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector-contrib/commit/302136b4c3776b8bbcbaf00df51675262cfabccf"><code>302136b</code></a>
[chore] [k8sclusterreceiver] consolidate metadata.yaml (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector-contrib/issues/24646">#24646</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-collector-contrib/compare/v0.81.0...v0.82.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `go.opentelemetry.io/collector/config/configgrpc` from 0.81.0 to
0.82.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-collector/releases">go.opentelemetry.io/collector/config/configgrpc's
releases</a>.</em></p>
<blockquote>
<h2>cmd/builder/v0.82.0</h2>
<h3>Images and binaries here: <a
href="https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.82.0">https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.82.0</a></h3>
<h2>v0.82.0</h2>
<h3>Images and binaries here: <a
href="https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.82.0">https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.82.0</a></h3>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-collector/blob/main/CHANGELOG.md">go.opentelemetry.io/collector/config/configgrpc's
changelog</a>.</em></p>
<blockquote>
<h2>v1.0.0-rcv0014/v0.82.0</h2>
<h3>🛑 Breaking changes 🛑</h3>
<ul>
<li>
<p><code>service</code>: Enable configuration of collector telemetry
through prometheus reader (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)
These options are still experimental. To enable them, users must enable
both
<code>telemetry.useOtelForInternalMetrics</code> and
<code>telemetry.useOtelWithSDKConfigurationForInternalTelemetry</code>
feature gates. This change updates <code>metric_readers</code> to
<code>readers</code> to align with the configuration
working group.</p>
</li>
<li>
<p><code>service</code>: Remove experimental
<code>metric_readers.args</code> and <code>metric_reader.type</code>
config options. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)
These options were experimental and did not have any effect on the
configuration of
the collector's telemetry. The change aligns the configuration with the
latest iteration
of the configuration json schema, which may still change in the
future.</p>
</li>
</ul>
<h3>💡 Enhancements 💡</h3>
<ul>
<li>
<p><code>service</code>: Add support for exporting internal metrics to
the console (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)
Internal collector metrics can now be exported to the console
using the otel-go stdout exporter.</p>
</li>
<li>
<p><code>service</code>: Add support for <code>interval</code> and
<code>timeout</code> configuration in periodic reader (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)</p>
</li>
<li>
<p><code>service</code>: Add support for span processor configuration
for internal traces (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8106">#8106</a>)
These options are still experimental. To enable them, users must enable
both
<code>telemetry.useOtelForInternalMetrics</code> and
<code>telemetry.useOtelWithSDKConfigurationForInternalTelemetry</code>
feature gates.</p>
</li>
<li>
<p><code>service</code>: Add support for OTLP export for internal
metrics (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)
Internal collector metrics can now be exported via OTLP
using the otel-go otlpgrpc and otlphttp exporters.</p>
</li>
<li>
<p><code>scraperhelper</code>: Adding optional timeout field to scrapers
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7951">#7951</a>)</p>
</li>
<li>
<p><code>otlpreceiver</code>: Add http url paths per signal config
options to otlpreceiver (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7511">#7511</a>)</p>
</li>
<li>
<p><code>otlphttpexporter</code>: Add support for trailing slash in
endpoint URL (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8084">#8084</a>)
URLs like <code>http://localhost:4318/</code> will now be treated as if
they were <code>http://localhost:4318</code></p>
</li>
</ul>
<h3>🧰 Bug fixes 🧰</h3>
<ul>
<li><code>connector</code>: Fix connector validation (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7892">#7892</a>)
Validation of connectors was too aggressive such that a connector that
was used in any combination of unsupported roles would fail.
Instead, validation should pass as long as each use of the connector has
a supported corresponding use.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/3089ea878eef022913a053600f3599b3fddffb95"><code>3089ea8</code></a>
[chore] Prepare release v1.0.0-rcv0014/v0.82.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8138">#8138</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/cd00f5cc16a3a52bffd0798d40e030fcf0aa5cc5"><code>cd00f5c</code></a>
Revert usage of multimod for diff between versions (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8137">#8137</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/996c118b7f9343e67da52679faede1f6dd1f25c3"><code>996c118</code></a>
[chore] Update release schedule (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8136">#8136</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/56135230d1d998608cc7c61250b28b64ffdd620b"><code>5613523</code></a>
add span processor configuration (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8117">#8117</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/5f1144308bf2ec4f87eb921966a0e08f4f3ab78d"><code>5f11443</code></a>
Add path prefix for otlp http receiver (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7570">#7570</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/a18c67d6774992a09048264e3a7c1ef0dcb5830c"><code>a18c67d</code></a>
Clarify error message when connector ID must be disambiguated (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8121">#8121</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/89f1e9f77ac062f3ed48264f5af78dcd522dc505"><code>89f1e9f</code></a>
Add support for OTLP export for internal metrics (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8097">#8097</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/a1efc0e7fb148845342b903c8c5945cbbc5f6370"><code>a1efc0e</code></a>
[chore] update jsonschema (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8113">#8113</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/b5e511ce31f22fd3d4817236792245fe1bd88ef8"><code>b5e511c</code></a>
[chore] dependabot updates Wed Jul 19 06:35:26 UTC 2023 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8110">#8110</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/8949d1da72143abe97fa767e90721d85d79fe6b5"><code>8949d1d</code></a>
add support for periodic reader interval/timeout (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8096">#8096</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-collector/compare/v0.81.0...v0.82.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `go.opentelemetry.io/collector/config/confighttp` from 0.81.0 to
0.82.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-collector/releases">go.opentelemetry.io/collector/config/confighttp's
releases</a>.</em></p>
<blockquote>
<h2>cmd/builder/v0.82.0</h2>
<h3>Images and binaries here: <a
href="https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.82.0">https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.82.0</a></h3>
<h2>v0.82.0</h2>
<h3>Images and binaries here: <a
href="https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.82.0">https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.82.0</a></h3>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-collector/blob/main/CHANGELOG.md">go.opentelemetry.io/collector/config/confighttp's
changelog</a>.</em></p>
<blockquote>
<h2>v1.0.0-rcv0014/v0.82.0</h2>
<h3>🛑 Breaking changes 🛑</h3>
<ul>
<li>
<p><code>service</code>: Enable configuration of collector telemetry
through prometheus reader (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)
These options are still experimental. To enable them, users must enable
both
<code>telemetry.useOtelForInternalMetrics</code> and
<code>telemetry.useOtelWithSDKConfigurationForInternalTelemetry</code>
feature gates. This change updates <code>metric_readers</code> to
<code>readers</code> to align with the configuration
working group.</p>
</li>
<li>
<p><code>service</code>: Remove experimental
<code>metric_readers.args</code> and <code>metric_reader.type</code>
config options. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)
These options were experimental and did not have any effect on the
configuration of
the collector's telemetry. The change aligns the configuration with the
latest iteration
of the configuration json schema, which may still change in the
future.</p>
</li>
</ul>
<h3>💡 Enhancements 💡</h3>
<ul>
<li>
<p><code>service</code>: Add support for exporting internal metrics to
the console (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)
Internal collector metrics can now be exported to the console
using the otel-go stdout exporter.</p>
</li>
<li>
<p><code>service</code>: Add support for <code>interval</code> and
<code>timeout</code> configuration in periodic reader (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)</p>
</li>
<li>
<p><code>service</code>: Add support for span processor configuration
for internal traces (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8106">#8106</a>)
These options are still experimental. To enable them, users must enable
both
<code>telemetry.useOtelForInternalMetrics</code> and
<code>telemetry.useOtelWithSDKConfigurationForInternalTelemetry</code>
feature gates.</p>
</li>
<li>
<p><code>service</code>: Add support for OTLP export for internal
metrics (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)
Internal collector metrics can now be exported via OTLP
using the otel-go otlpgrpc and otlphttp exporters.</p>
</li>
<li>
<p><code>scraperhelper</code>: Adding optional timeout field to scrapers
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7951">#7951</a>)</p>
</li>
<li>
<p><code>otlpreceiver</code>: Add http url paths per signal config
options to otlpreceiver (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7511">#7511</a>)</p>
</li>
<li>
<p><code>otlphttpexporter</code>: Add support for trailing slash in
endpoint URL (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8084">#8084</a>)
URLs like <code>http://localhost:4318/</code> will now be treated as if
they were <code>http://localhost:4318</code></p>
</li>
</ul>
<h3>🧰 Bug fixes 🧰</h3>
<ul>
<li><code>connector</code>: Fix connector validation (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7892">#7892</a>)
Validation of connectors was too aggressive such that a connector that
was used in any combination of unsupported roles would fail.
Instead, validation should pass as long as each use of the connector has
a supported corresponding use.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/3089ea878eef022913a053600f3599b3fddffb95"><code>3089ea8</code></a>
[chore] Prepare release v1.0.0-rcv0014/v0.82.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8138">#8138</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/cd00f5cc16a3a52bffd0798d40e030fcf0aa5cc5"><code>cd00f5c</code></a>
Revert usage of multimod for diff between versions (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8137">#8137</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/996c118b7f9343e67da52679faede1f6dd1f25c3"><code>996c118</code></a>
[chore] Update release schedule (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8136">#8136</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/56135230d1d998608cc7c61250b28b64ffdd620b"><code>5613523</code></a>
add span processor configuration (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8117">#8117</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/5f1144308bf2ec4f87eb921966a0e08f4f3ab78d"><code>5f11443</code></a>
Add path prefix for otlp http receiver (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7570">#7570</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/a18c67d6774992a09048264e3a7c1ef0dcb5830c"><code>a18c67d</code></a>
Clarify error message when connector ID must be disambiguated (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8121">#8121</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/89f1e9f77ac062f3ed48264f5af78dcd522dc505"><code>89f1e9f</code></a>
Add support for OTLP export for internal metrics (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8097">#8097</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/a1efc0e7fb148845342b903c8c5945cbbc5f6370"><code>a1efc0e</code></a>
[chore] update jsonschema (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8113">#8113</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/b5e511ce31f22fd3d4817236792245fe1bd88ef8"><code>b5e511c</code></a>
[chore] dependabot updates Wed Jul 19 06:35:26 UTC 2023 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8110">#8110</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/8949d1da72143abe97fa767e90721d85d79fe6b5"><code>8949d1d</code></a>
add support for periodic reader interval/timeout (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8096">#8096</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-collector/compare/v0.81.0...v0.82.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `go.opentelemetry.io/collector/receiver/otlpreceiver` from
0.81.0 to 0.82.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-collector/releases">go.opentelemetry.io/collector/receiver/otlpreceiver's
releases</a>.</em></p>
<blockquote>
<h2>cmd/builder/v0.82.0</h2>
<h3>Images and binaries here: <a
href="https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.82.0">https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.82.0</a></h3>
<h2>v0.82.0</h2>
<h3>Images and binaries here: <a
href="https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.82.0">https://github.com/open-telemetry/opentelemetry-collector-releases/releases/tag/v0.82.0</a></h3>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-collector/blob/main/CHANGELOG.md">go.opentelemetry.io/collector/receiver/otlpreceiver's
changelog</a>.</em></p>
<blockquote>
<h2>v1.0.0-rcv0014/v0.82.0</h2>
<h3>🛑 Breaking changes 🛑</h3>
<ul>
<li>
<p><code>service</code>: Enable configuration of collector telemetry
through prometheus reader (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)
These options are still experimental. To enable them, users must enable
both
<code>telemetry.useOtelForInternalMetrics</code> and
<code>telemetry.useOtelWithSDKConfigurationForInternalTelemetry</code>
feature gates. This change updates <code>metric_readers</code> to
<code>readers</code> to align with the configuration
working group.</p>
</li>
<li>
<p><code>service</code>: Remove experimental
<code>metric_readers.args</code> and <code>metric_reader.type</code>
config options. (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)
These options were experimental and did not have any effect on the
configuration of
the collector's telemetry. The change aligns the configuration with the
latest iteration
of the configuration json schema, which may still change in the
future.</p>
</li>
</ul>
<h3>💡 Enhancements 💡</h3>
<ul>
<li>
<p><code>service</code>: Add support for exporting internal metrics to
the console (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)
Internal collector metrics can now be exported to the console
using the otel-go stdout exporter.</p>
</li>
<li>
<p><code>service</code>: Add support for <code>interval</code> and
<code>timeout</code> configuration in periodic reader (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)</p>
</li>
<li>
<p><code>service</code>: Add support for span processor configuration
for internal traces (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8106">#8106</a>)
These options are still experimental. To enable them, users must enable
both
<code>telemetry.useOtelForInternalMetrics</code> and
<code>telemetry.useOtelWithSDKConfigurationForInternalTelemetry</code>
feature gates.</p>
</li>
<li>
<p><code>service</code>: Add support for OTLP export for internal
metrics (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7641">#7641</a>)
Internal collector metrics can now be exported via OTLP
using the otel-go otlpgrpc and otlphttp exporters.</p>
</li>
<li>
<p><code>scraperhelper</code>: Adding optional timeout field to scrapers
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7951">#7951</a>)</p>
</li>
<li>
<p><code>otlpreceiver</code>: Add http url paths per signal config
options to otlpreceiver (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7511">#7511</a>)</p>
</li>
<li>
<p><code>otlphttpexporter</code>: Add support for trailing slash in
endpoint URL (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8084">#8084</a>)
URLs like <code>http://localhost:4318/</code> will now be treated as if
they were <code>http://localhost:4318</code></p>
</li>
</ul>
<h3>🧰 Bug fixes 🧰</h3>
<ul>
<li><code>connector</code>: Fix connector validation (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7892">#7892</a>)
Validation of connectors was too aggressive such that a connector that
was used in any combination of unsupported roles would fail.
Instead, validation should pass as long as each use of the connector has
a supported corresponding use.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/3089ea878eef022913a053600f3599b3fddffb95"><code>3089ea8</code></a>
[chore] Prepare release v1.0.0-rcv0014/v0.82.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8138">#8138</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/cd00f5cc16a3a52bffd0798d40e030fcf0aa5cc5"><code>cd00f5c</code></a>
Revert usage of multimod for diff between versions (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8137">#8137</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/996c118b7f9343e67da52679faede1f6dd1f25c3"><code>996c118</code></a>
[chore] Update release schedule (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8136">#8136</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/56135230d1d998608cc7c61250b28b64ffdd620b"><code>5613523</code></a>
add span processor configuration (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8117">#8117</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/5f1144308bf2ec4f87eb921966a0e08f4f3ab78d"><code>5f11443</code></a>
Add path prefix for otlp http receiver (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/7570">#7570</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/a18c67d6774992a09048264e3a7c1ef0dcb5830c"><code>a18c67d</code></a>
Clarify error message when connector ID must be disambiguated (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8121">#8121</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/89f1e9f77ac062f3ed48264f5af78dcd522dc505"><code>89f1e9f</code></a>
Add support for OTLP export for internal metrics (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8097">#8097</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/a1efc0e7fb148845342b903c8c5945cbbc5f6370"><code>a1efc0e</code></a>
[chore] update jsonschema (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8113">#8113</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/b5e511ce31f22fd3d4817236792245fe1bd88ef8"><code>b5e511c</code></a>
[chore] dependabot updates Wed Jul 19 06:35:26 UTC 2023 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8110">#8110</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-collector/commit/8949d1da72143abe97fa767e90721d85d79fe6b5"><code>8949d1d</code></a>
add support for periodic reader interval/timeout (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-collector/issues/8096">#8096</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-collector/compare/v0.81.0...v0.82.0">compare
view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually


</details>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Yuri Shkuro <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Yuri Shkuro <[email protected]>
Co-authored-by: Yuri Shkuro <[email protected]>
  • Loading branch information
3 people authored Aug 2, 2023
1 parent 1b136d4 commit 85e1d03
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 74 deletions.
2 changes: 1 addition & 1 deletion cmd/collector/app/handler/otlp_receiver.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func startOTLPReceiver(
) (receiver.Traces, error) {
otlpReceiverConfig := otlpFactory.CreateDefaultConfig().(*otlpreceiver.Config)
applyGRPCSettings(otlpReceiverConfig.GRPC, &options.OTLP.GRPC)
applyHTTPSettings(otlpReceiverConfig.HTTP, &options.OTLP.HTTP)
applyHTTPSettings(otlpReceiverConfig.HTTP.HTTPServerSettings, &options.OTLP.HTTP)
otlpReceiverSettings := receiver.CreateSettings{
TelemetrySettings: component.TelemetrySettings{
Logger: logger,
Expand Down
2 changes: 1 addition & 1 deletion cmd/collector/app/handler/otlp_receiver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ func TestApplyOTLPHTTPServerSettings(t *testing.T) {
},
}

applyHTTPSettings(otlpReceiverConfig.HTTP, httpOpts)
applyHTTPSettings(otlpReceiverConfig.HTTP.HTTPServerSettings, httpOpts)

out := otlpReceiverConfig.HTTP

Expand Down
48 changes: 24 additions & 24 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ require (
github.com/hashicorp/go-plugin v1.4.10
github.com/kr/pretty v0.3.1
github.com/olivere/elastic v6.2.37+incompatible
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.81.0
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.82.0
github.com/opentracing/opentracing-go v1.2.0
github.com/prometheus/client_golang v1.16.0
github.com/prometheus/client_model v0.4.0
Expand All @@ -46,16 +46,16 @@ require (
github.com/uber/jaeger-client-go v2.30.0+incompatible
github.com/uber/jaeger-lib v2.4.1+incompatible
github.com/xdg-go/scram v1.1.2
go.opentelemetry.io/collector/component v0.81.0
go.opentelemetry.io/collector/config/configgrpc v0.81.0
go.opentelemetry.io/collector/config/confighttp v0.81.0
go.opentelemetry.io/collector/config/configtls v0.81.0
go.opentelemetry.io/collector/consumer v0.81.0
go.opentelemetry.io/collector/extension v0.81.0
go.opentelemetry.io/collector/pdata v1.0.0-rcv0013
go.opentelemetry.io/collector/receiver v0.81.0
go.opentelemetry.io/collector/receiver/otlpreceiver v0.81.0
go.opentelemetry.io/collector/semconv v0.81.0
go.opentelemetry.io/collector/component v0.82.0
go.opentelemetry.io/collector/config/configgrpc v0.82.0
go.opentelemetry.io/collector/config/confighttp v0.82.0
go.opentelemetry.io/collector/config/configtls v0.82.0
go.opentelemetry.io/collector/consumer v0.82.0
go.opentelemetry.io/collector/extension v0.82.0
go.opentelemetry.io/collector/pdata v1.0.0-rcv0014
go.opentelemetry.io/collector/receiver v0.82.0
go.opentelemetry.io/collector/receiver/otlpreceiver v0.82.0
go.opentelemetry.io/collector/semconv v0.82.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.42.1-0.20230612162650-64be7e574a17
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.42.0
go.opentelemetry.io/otel v1.16.0
Expand Down Expand Up @@ -139,7 +139,7 @@ require (
github.com/oklog/ulid v1.3.1 // indirect
github.com/onsi/ginkgo v1.16.4 // indirect
github.com/onsi/gomega v1.13.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.81.0 // indirect
github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.82.0 // indirect
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
github.com/pierrec/lz4 v2.6.1+incompatible // indirect
github.com/pkg/errors v0.9.1 // indirect
Expand All @@ -157,18 +157,18 @@ require (
github.com/xdg-go/stringprep v1.0.4 // indirect
go.mongodb.org/mongo-driver v1.11.6 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/collector v0.81.0 // indirect
go.opentelemetry.io/collector/config/configauth v0.81.0 // indirect
go.opentelemetry.io/collector/config/configcompression v0.81.0 // indirect
go.opentelemetry.io/collector/config/confignet v0.81.0 // indirect
go.opentelemetry.io/collector/config/configopaque v0.81.0 // indirect
go.opentelemetry.io/collector/config/configtelemetry v0.81.0 // indirect
go.opentelemetry.io/collector/config/internal v0.81.0 // indirect
go.opentelemetry.io/collector/confmap v0.81.0 // indirect
go.opentelemetry.io/collector/exporter v0.81.0 // indirect
go.opentelemetry.io/collector/extension/auth v0.81.0 // indirect
go.opentelemetry.io/collector/featuregate v1.0.0-rcv0013 // indirect
go.opentelemetry.io/collector/processor v0.81.0 // indirect
go.opentelemetry.io/collector v0.82.0 // indirect
go.opentelemetry.io/collector/config/configauth v0.82.0 // indirect
go.opentelemetry.io/collector/config/configcompression v0.82.0 // indirect
go.opentelemetry.io/collector/config/confignet v0.82.0 // indirect
go.opentelemetry.io/collector/config/configopaque v0.82.0 // indirect
go.opentelemetry.io/collector/config/configtelemetry v0.82.0 // indirect
go.opentelemetry.io/collector/config/internal v0.82.0 // indirect
go.opentelemetry.io/collector/confmap v0.82.0 // indirect
go.opentelemetry.io/collector/exporter v0.82.0 // indirect
go.opentelemetry.io/collector/extension/auth v0.82.0 // indirect
go.opentelemetry.io/collector/featuregate v1.0.0-rcv0014 // indirect
go.opentelemetry.io/collector/processor v0.82.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.16.0 // indirect
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
Expand Down
96 changes: 48 additions & 48 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -555,10 +555,10 @@ github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7J
github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo=
github.com/onsi/gomega v1.13.0 h1:7lLHu94wT9Ij0o6EWWclhu0aOh32VxhkwEJvzuWPeak=
github.com/onsi/gomega v1.13.0/go.mod h1:lRk9szgn8TxENtWd0Tp4c3wjlRfMTMH27I+3Je41yGY=
github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.81.0 h1:sPjCHuqjn5UYDJOai4FulMCfLP+7AbspjHfv0jAtmD0=
github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.81.0/go.mod h1:moQ6krtZ8dyziij2P+9eao5+gBfCJjiNDwN7n2MZZs4=
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.81.0 h1:UCF4zWe24m1+yQeYGEQjzq5c9yNAf4d1lknbR7PAoH4=
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.81.0/go.mod h1:/HK52N8ufi1rKuShEanBZVLVpOygLoIT9zqs0azKQ/s=
github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.82.0 h1:0b6glbENAwPdasKKVOgpR/EaZG1sJhsUfXCRiwZ0drU=
github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.82.0/go.mod h1:MKnM9GFqPz4HY4NQDDao+dIjZz4BvThAijuJuPC8NOI=
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.82.0 h1:fKTXkXX+iMAAiTu4r1j1DbzKYvbd6CvFoWNWLhTOJjk=
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/translator/jaeger v0.82.0/go.mod h1:1SM5fbDUmJHQUNO0T/lDzMVmGpn+z9UJHyjfGg6IQ0Q=
github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
github.com/opentracing/opentracing-go v1.2.0 h1:uEJPy/1a5RIPAJ0Ov+OIO8OxWu77jEv+1B0VhjKrZUs=
github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc=
Expand Down Expand Up @@ -720,50 +720,50 @@ go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0=
go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo=
go.opentelemetry.io/collector v0.81.0 h1:pF+sB8xNXlg/W0a0QTLz4mUWyool1a9toVj8LmLoFqg=
go.opentelemetry.io/collector v0.81.0/go.mod h1:thuOTBMusXwcTPTwLbs3zwwCOLaaQX2g+Hjf8OObc/w=
go.opentelemetry.io/collector/component v0.81.0 h1:AKsl6bss/SRrW248GFpmGiiI/4kdemW92Ai/X82CCqY=
go.opentelemetry.io/collector/component v0.81.0/go.mod h1:+m6/yPiJ7O7Oc/OLfmgUB2mrY1xoUqRj4BsoOtIVpGs=
go.opentelemetry.io/collector/config/configauth v0.81.0 h1:NIiJuIGOdblN0EIJv64R2mvGhthcYfWuvyCnjk8HRN4=
go.opentelemetry.io/collector/config/configauth v0.81.0/go.mod h1:2KscbmU+8fIzwiSU9Kku0Tf4b4A1plqFIJXR1DWSaTw=
go.opentelemetry.io/collector/config/configcompression v0.81.0 h1:Q725pvVH7tR6BP3WK7Ro3pbqMeQdZEV3KeFVHchBxCc=
go.opentelemetry.io/collector/config/configcompression v0.81.0/go.mod h1:xhHm1sEH7BTECAJo1xn64NMxeIvZGKdVGdSKUUc+YuM=
go.opentelemetry.io/collector/config/configgrpc v0.81.0 h1:Q2xEE2SGbg79j3TdHT+781eUu/2uUIyrHVJAG9bLpVk=
go.opentelemetry.io/collector/config/configgrpc v0.81.0/go.mod h1:Frq/l2Ttbvm7cFH3hkxLdhl5TCNHcH6rnkpmi8U2kLY=
go.opentelemetry.io/collector/config/confighttp v0.81.0 h1:vIdiepUT7P/WtJRdfh8mjzvSqJRVF8/vl9GWtUNQlHQ=
go.opentelemetry.io/collector/config/confighttp v0.81.0/go.mod h1:I54THsffkpv//O7bUHw+0bXxjYdvyL6IHg5ksgYez8I=
go.opentelemetry.io/collector/config/confignet v0.81.0 h1:Eu8m3eX8GaGhOUc//YXvV4i3cEivxUSxkLnV1U9ydhg=
go.opentelemetry.io/collector/config/confignet v0.81.0/go.mod h1:unOg7BZvpt6T5xsf+LyeOQvUhD8ld/2AbfOsmUZ/bPM=
go.opentelemetry.io/collector/config/configopaque v0.81.0 h1:MkCAGh0WydRWydETB9FLnuCj9hDPDiz2g4Wxnl53I0w=
go.opentelemetry.io/collector/config/configopaque v0.81.0/go.mod h1:pM1oy6gasukw3H6jAvc9Q9OtFaaY2IbfeuwCPAjOgXc=
go.opentelemetry.io/collector/config/configtelemetry v0.81.0 h1:j3dhWbAcrfL1n0RmShRJf99X/xIMoPfEShN/5Z8bY0k=
go.opentelemetry.io/collector/config/configtelemetry v0.81.0/go.mod h1:KEYQRiYJdx38iZkvcLKBZWH9fK4NeafxBwGRrRKMgyA=
go.opentelemetry.io/collector/config/configtls v0.81.0 h1:2vt+yOZUvGq5ADqFAxL5ONm1ACuGXDSs87AWT54Ez4M=
go.opentelemetry.io/collector/config/configtls v0.81.0/go.mod h1:HMHTYBMMgqBpTvnNAhQYmjO7XuoBMe2T4qRHcKluB4Q=
go.opentelemetry.io/collector/config/internal v0.81.0 h1:wRV2PBnJygdmKpIdt/xfG7zdQvXvHz9L+z8MhGsOji4=
go.opentelemetry.io/collector/config/internal v0.81.0/go.mod h1:RKcLV1gQxhgwx+6rlPYsvGMq1RZNne3UeOUZkHxJnIg=
go.opentelemetry.io/collector/confmap v0.81.0 h1:AqweoBGdF3jGM2/KgP5GS6bmN+1aVrEiCy4nPf7IBE4=
go.opentelemetry.io/collector/confmap v0.81.0/go.mod h1:iCTnTqGgZZJumhJxpY7rrJz9UQ/0zjPmsJz2Z7Tp4RY=
go.opentelemetry.io/collector/consumer v0.81.0 h1:8R2iCrSzD7T0RtC2Wh4GXxDiqla2vNhDokGW6Bcrfas=
go.opentelemetry.io/collector/consumer v0.81.0/go.mod h1:jS7+gAKdOx3lD3SnaBztBjUVpUYL3ee7fpoqI4p/gT8=
go.opentelemetry.io/collector/exporter v0.81.0 h1:GLhB8WGrBx+zZSB1HIOx2ivFUMahGtAVO2CC5xbCUHQ=
go.opentelemetry.io/collector/exporter v0.81.0/go.mod h1:Di4RTzI8uRooVNATIeApNUgmGdNt8XiikUTQLabmZaA=
go.opentelemetry.io/collector/extension v0.81.0 h1:Ak7AzZzxTFJxGyVbEklsGzqHyOHW5USiifJilCcRyTU=
go.opentelemetry.io/collector/extension v0.81.0/go.mod h1:DU2bX8qulS5+OCJZGfvqIwIT/q3sFnEjI2HjJ2LDI/s=
go.opentelemetry.io/collector/extension/auth v0.81.0 h1:UzVQSG9naJh1hX7hh+HVcvB3n+rpCJXX2BBdUoL/Ybo=
go.opentelemetry.io/collector/extension/auth v0.81.0/go.mod h1:PaBFcFrzXV+UgM4VZKp6Kn1IiRC/MbEYWxTfIalcIwk=
go.opentelemetry.io/collector/featuregate v1.0.0-rcv0013 h1:tiTUG9X/gEDN1oDYQOBVUFYQfhUG2CvgW9VhBc2uk1U=
go.opentelemetry.io/collector/featuregate v1.0.0-rcv0013/go.mod h1:0mE3mDLmUrOXVoNsuvj+7dV14h/9HFl/Fy9YTLoLObo=
go.opentelemetry.io/collector/pdata v1.0.0-rcv0013 h1:4sONXE9hAX+4Di8m0bQ/KaoH3Mi+OPt04cXkZ7A8W3k=
go.opentelemetry.io/collector/pdata v1.0.0-rcv0013/go.mod h1:x09G/4KjEcDKNuWCjC5ZtnuDE0XEqiRwI+yrHSVjIy8=
go.opentelemetry.io/collector/processor v0.81.0 h1:ypyNV5R0bnN3XGMAsH/q5eNARF5vXtFgSOK9rBWzsLc=
go.opentelemetry.io/collector/processor v0.81.0/go.mod h1:ZDwO3DVg1VUSA92g0r/o0jYk+T7r9uxgZZ3LABJbC34=
go.opentelemetry.io/collector/receiver v0.81.0 h1:0c+YtIV7fmd9ev+zmwS9qjx5ASi8cw+gSypu4I7Gugc=
go.opentelemetry.io/collector/receiver v0.81.0/go.mod h1:q80JkMxVLnk0vWxoTRY2J7F4Qx9069Yy5yxDbZ4JVwk=
go.opentelemetry.io/collector/receiver/otlpreceiver v0.81.0 h1:ewVbfATnAeQkwFK3r0dpFKCXcTb8HJKX4AixUioRt+c=
go.opentelemetry.io/collector/receiver/otlpreceiver v0.81.0/go.mod h1:LGuSMVdOq5Zq+CEHF9YBHMaOIUZrzqW7DQGqo9g0dJA=
go.opentelemetry.io/collector/semconv v0.81.0 h1:lCYNNo3powDvFIaTPP2jDKIrBiV1T92NK4QgL/aHYXw=
go.opentelemetry.io/collector/semconv v0.81.0/go.mod h1:TlYPtzvsXyHOgr5eATi43qEMqwSmIziivJB2uctKswo=
go.opentelemetry.io/collector v0.82.0 h1:MaKqWT0R4GCdkZDhYWOQkLfoJj9V7GsMbk1gsAuogaw=
go.opentelemetry.io/collector v0.82.0/go.mod h1:PMmDJkZzC1xpcViHlwMMEVeAnRRl3HYy3nXgD8KJwG0=
go.opentelemetry.io/collector/component v0.82.0 h1:ID9nOGKBf5G0avhuYQlTzmwAyIMvh9B+tlckLE/4qw4=
go.opentelemetry.io/collector/component v0.82.0/go.mod h1:jSdGG4L1Ger6ob6lWpr8jmKC2qqC+XZ/gOgu7GUA5xs=
go.opentelemetry.io/collector/config/configauth v0.82.0 h1:H5xrWyPMotSqajiiH/bay8bpVsT4aq6Vih4OuArXv4Q=
go.opentelemetry.io/collector/config/configauth v0.82.0/go.mod h1:P0ukmBIUk+HP0O7yfUOKRmPmffneAQgmEL9/iTOo1CU=
go.opentelemetry.io/collector/config/configcompression v0.82.0 h1:M6a7eiHdBUB8mIioDhWugJfNm7Sw85cvv/OXyTDhtY0=
go.opentelemetry.io/collector/config/configcompression v0.82.0/go.mod h1:xhHm1sEH7BTECAJo1xn64NMxeIvZGKdVGdSKUUc+YuM=
go.opentelemetry.io/collector/config/configgrpc v0.82.0 h1:taZWDbtVBm0OOcgnfpVA1X43pmU2oNhj39B2uV3COQk=
go.opentelemetry.io/collector/config/configgrpc v0.82.0/go.mod h1:NHXHRI40Q7TT/d38DKT30B7DOrVUkj7anEFOD59R9o8=
go.opentelemetry.io/collector/config/confighttp v0.82.0 h1:2LhyqVTd+Bsr8SgsCq6+q731F81uddK9GwvGhwD/Co0=
go.opentelemetry.io/collector/config/confighttp v0.82.0/go.mod h1:OHGx/aJqGJ9z2jaBXvaylwkAuiUwikg1/n+RRDpsfOo=
go.opentelemetry.io/collector/config/confignet v0.82.0 h1:zN9JaFTn7Dth3u5ot6KZJcBZACTEzGqFWYyO5qAlYfo=
go.opentelemetry.io/collector/config/confignet v0.82.0/go.mod h1:unOg7BZvpt6T5xsf+LyeOQvUhD8ld/2AbfOsmUZ/bPM=
go.opentelemetry.io/collector/config/configopaque v0.82.0 h1:0Ma63QTr4AkODzEABZHtgiU5Dig8SItpHOuB28UnVSw=
go.opentelemetry.io/collector/config/configopaque v0.82.0/go.mod h1:pM1oy6gasukw3H6jAvc9Q9OtFaaY2IbfeuwCPAjOgXc=
go.opentelemetry.io/collector/config/configtelemetry v0.82.0 h1:Zln2K4S5gBDcOpBNIzM0cZS5P6cohEYstHngVvIbGBY=
go.opentelemetry.io/collector/config/configtelemetry v0.82.0/go.mod h1:KEYQRiYJdx38iZkvcLKBZWH9fK4NeafxBwGRrRKMgyA=
go.opentelemetry.io/collector/config/configtls v0.82.0 h1:eE/8muTszLlviOGLy5N08BaXLCcYqDW3mKIoKyDDa8o=
go.opentelemetry.io/collector/config/configtls v0.82.0/go.mod h1:unBTmL1bdpkp9mYEDz7N+Ln4yEwh7Ug74I1HgZMplCk=
go.opentelemetry.io/collector/config/internal v0.82.0 h1:JnnDARkXrC3OJDsMfQkBgfI0Np4s+18zvoDqZ4OH0+I=
go.opentelemetry.io/collector/config/internal v0.82.0/go.mod h1:RKcLV1gQxhgwx+6rlPYsvGMq1RZNne3UeOUZkHxJnIg=
go.opentelemetry.io/collector/confmap v0.82.0 h1:s1Rd8jz21DGlLJfED0Py9VaEq2qPWmWwWy5MriDCX+4=
go.opentelemetry.io/collector/confmap v0.82.0/go.mod h1:IS/PoUYHETtxV6+fJammTkCxxa4LEwK2u4Cx/bVCH/s=
go.opentelemetry.io/collector/consumer v0.82.0 h1:vZecylW6bpaphetSTjCLgwXLxSYQ6oe/kzwkx4iF5oE=
go.opentelemetry.io/collector/consumer v0.82.0/go.mod h1:qrhd0i0Gp0RkihcEXb+7Rb584Kal2NmGH1eA4Zg6puA=
go.opentelemetry.io/collector/exporter v0.82.0 h1:BWsx4rWfVwlV+qNuevSMm+2Cv6uGZYYZ9CEFqq0q+F4=
go.opentelemetry.io/collector/exporter v0.82.0/go.mod h1:e3VPpLYVNRaF+G2HuKw6A5hTBMYZ4tgRYYzMusfwFJE=
go.opentelemetry.io/collector/extension v0.82.0 h1:DH4tqrTOz0HmGDJ6FT/jRD2woQf3ugqC6QqSiQdH3wg=
go.opentelemetry.io/collector/extension v0.82.0/go.mod h1:n7d0XTh7fdyorZWTc+gLpJh78FS7GjRqIjUiW1xdhe0=
go.opentelemetry.io/collector/extension/auth v0.82.0 h1:iaxwFslRj6mfzs1wVzbnj+gDU2G98IeXW4tcrq78p5s=
go.opentelemetry.io/collector/extension/auth v0.82.0/go.mod h1:O1xBcb06pKD8g3FadLDvMa1xKZwPGdHQp4CI8vW3RCM=
go.opentelemetry.io/collector/featuregate v1.0.0-rcv0014 h1:C9o0mbP0MyygqFnKueVQK/v9jef6zvuttmTGlKaqhgw=
go.opentelemetry.io/collector/featuregate v1.0.0-rcv0014/go.mod h1:0mE3mDLmUrOXVoNsuvj+7dV14h/9HFl/Fy9YTLoLObo=
go.opentelemetry.io/collector/pdata v1.0.0-rcv0014 h1:iT5qH0NLmkGeIdDtnBogYDx7L58t6CaWGL378DEo2QY=
go.opentelemetry.io/collector/pdata v1.0.0-rcv0014/go.mod h1:BRvDrx43kiSoUx3mr7SoA7h9B8+OY99mUK+CZSQFWW4=
go.opentelemetry.io/collector/processor v0.82.0 h1:DoqVrrnGYThu/h1sOr6E0hR1Fj5nQT4VT0ptFZcltRk=
go.opentelemetry.io/collector/processor v0.82.0/go.mod h1:B0MtfLWCYNBJ+PXf9k77M2Yn08MKItNB2vuvwhqrtt0=
go.opentelemetry.io/collector/receiver v0.82.0 h1:bc6jc8jmSgc0/C9zqTqqWOGJFVx0AJ53jiToSmQs2SE=
go.opentelemetry.io/collector/receiver v0.82.0/go.mod h1:Uh6BgcTmmrA1Bm/GpKGRY6WwQyPio4yEDsYkUo0A5Gk=
go.opentelemetry.io/collector/receiver/otlpreceiver v0.82.0 h1:LzcmQ9d7NauTVEWfPNwRwqNd/NBQDi+JU0OHWearcEA=
go.opentelemetry.io/collector/receiver/otlpreceiver v0.82.0/go.mod h1:Qt9Ha/yWaU6ni0XwFslNCBX5zZBQHcnxma/sU1s7LH4=
go.opentelemetry.io/collector/semconv v0.82.0 h1:WUeT2a+uZjI6kLvwcBaJnGvo7KSQ/9dIFRcxOQdXucc=
go.opentelemetry.io/collector/semconv v0.82.0/go.mod h1:TlYPtzvsXyHOgr5eATi43qEMqwSmIziivJB2uctKswo=
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.42.1-0.20230612162650-64be7e574a17 h1:mdcNStUIXngF/mH3xxAo4nbR4g65IXqLL1SvYMjz7JQ=
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.42.1-0.20230612162650-64be7e574a17/go.mod h1:N2Nw/UmmvQn0yCnaUzvsWzTWIeffYIdFteg6mxqCWII=
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.42.0 h1:pginetY7+onl4qN1vl0xW/V/v6OBZ0vVdH+esuJgvmM=
Expand Down

0 comments on commit 85e1d03

Please sign in to comment.