You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@eventmesh.apache.org by "dependabot[bot] (via GitHub)" <gi...@apache.org> on 2023/04/03 03:15:03 UTC

[GitHub] [eventmesh] dependabot[bot] opened a new pull request, #3613: Bump io.opentelemetry:opentelemetry-exporter-prometheus from 1.3.0-alpha to 1.24.0-alpha

dependabot[bot] opened a new pull request, #3613:
URL: https://github.com/apache/eventmesh/pull/3613

   Bumps [io.opentelemetry:opentelemetry-exporter-prometheus](https://github.com/open-telemetry/opentelemetry-java) from 1.3.0-alpha to 1.24.0-alpha.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a href="https://github.com/open-telemetry/opentelemetry-java/releases">io.opentelemetry:opentelemetry-exporter-prometheus's releases</a>.</em></p>
   <blockquote>
   <h2>Version 1.23.1</h2>
   <p>This is a patch release on the previous 1.23.0 release, fixing the issue(s) below.</p>
   <ul>
   <li>Fix bug that broke <code>AutoConfiguredOpenTelemetrySdk</code>'s shutdown hook. (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5221">#5221</a>)</li>
   </ul>
   <h2>Version 1.23.0</h2>
   <p>This release is a notable release for metrics:</p>
   <ul>
   <li>The base2 exponential histogram aggregation has been marked as stable. To use, configure your <code>MetricExporter</code> with a default aggregation of <code>Aggregation.base2ExponentialBucketHistogram()</code> for histogram instruments. If using OTLP exporter with autoconfigure, set <code>OTEL_EXPORTER_OTLP_METRICS_DEFAULT_HISTOGRAM_AGGREGATION=BASE2_EXPONENTIAL_BUCKET_HISTOGRAM</code>. If using configuring OTLP programatically, use <code>Otlp*MetricExporterBuilder#setDefaultAggregationSelector(DefaultAggregationSelector)</code>.</li>
   <li>The metrics SDK undergone significant internal refactoring which results in reduced complexity and significantly reduced memory allocation during metric collection / export.</li>
   </ul>
   <h3>API</h3>
   <h4>Logs</h4>
   <ul>
   <li>WARNING: Split out Event API from Log API. Event API is now published in <code>opentelemetry-api-events</code>. API / SDK usage has also changed - see PR for details. (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5049">#5049</a>)</li>
   </ul>
   <h3>SDK</h3>
   <ul>
   <li>Add shutdown / close to <code>OpenTelemetrySdk</code> (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5100">#5100</a>)</li>
   </ul>
   <h4>Metrics</h4>
   <ul>
   <li>Base2 exponential histogram aggregations are now stable. Add <code>base2ExponentialBucketHistogram()</code> to <code>Aggregation</code>. (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5143">#5143</a>)</li>
   <li>Promote exponential histogram data interfaces to stable package (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5120">#5120</a>)</li>
   <li>Add Base2 prefix to internal exponential histogram classes (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5179">#5179</a>)</li>
   <li>Add MaxScale config parameter to <code>Base2ExponentialBucketHistogram</code> (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5044">#5044</a>)</li>
   <li>Add close method to <code>MetricReader</code> (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5109">#5109</a>)</li>
   <li>Reuse <code>AggregatorHandle</code> with cumulative temporality to reduce allocations (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5142">#5142</a>)</li>
   <li>Delete notion of accumulation to reduce allocations (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5154">#5154</a>)</li>
   <li>Delete bound instruments (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5157">#5157</a>)</li>
   <li>Reuse aggregation handles for delta temporality to reduce allocations (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5176">#5176</a>)</li>
   </ul>
   <h4>Exporter</h4>
   <ul>
   <li>Add proper shutdown implementations for all exporters (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5113">#5113</a>)</li>
   </ul>
   <h4>SDK Extensions</h4>
   <ul>
   <li>WARNING: Remove deprecated autoconfigure exemplar filter names. Previous names <code>none</code>, <code>all</code> , <code>with_sampled_trace</code> have been removed. Use <code>always_off</code>, <code>always_on</code>, <code>trace_based</code> instead. (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5098">#5098</a>)</li>
   <li>Add autoconfigure support for &quot;none&quot; option for propagator value (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5121">#5121</a>)</li>
   <li>Add autoconfigure support for <code>parentbased_jaeger_remote</code> sampler (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5123">#5123</a>)</li>
   <li>Autoconfigure closes up autoconfigured resources in case of exception (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5117">#5117</a>)</li>
   <li>View file based config has switched from snakeyaml to snakeyaml-engine for YAML parsing. (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5138">#5138</a>)</li>
   <li>Fix autoconfigure resource providers property docs (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5135">#5135</a>)</li>
   </ul>
   <h4>Testing</h4>
   <ul>
   <li>WARNING: Merge <code>opentelemetry-sdk-metrics-testing</code> into <code>opentelemetry-sdk-testing</code>. Stop publishing <code>opentelemetry-sdk-metrics-testing</code>. (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5144">#5144</a>)</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a href="https://github.com/open-telemetry/opentelemetry-java/blob/main/CHANGELOG.md">io.opentelemetry:opentelemetry-exporter-prometheus's changelog</a>.</em></p>
   <blockquote>
   <h1>Changelog</h1>
   <h2>Unreleased</h2>
   <h2>Version 1.24.0 (2023-03-10)</h2>
   <h3>SDK</h3>
   <h4>Metrics</h4>
   <ul>
   <li>Optimize DefaultSynchronousMetricStorage iteration to reduce allocations
   (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5183">#5183</a>)</li>
   <li>Avoid exemplar allocations if there are no measurements
   (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5182">#5182</a>)</li>
   <li>Remove boxed primitives from aggregations to reduce allocations
   (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5184">#5184</a>)</li>
   <li>Stop ignoring long measurements in HistogramExemplarReservoir
   (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5216">#5216</a>)</li>
   <li>Remove validations for noop instrument names and units
   (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5146">#5146</a>)</li>
   <li>Allow views to select on instrument unit
   (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5255">#5255</a>)</li>
   </ul>
   <h4>Exporter</h4>
   <ul>
   <li>Add (internal) TlsConfigHelper for additional TLS configurability
   (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5246">#5246</a>)</li>
   </ul>
   <h4>SDK Extensions</h4>
   <ul>
   <li>Introduce mTLS support for JaegerRemoteSamplerBuilder (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/issues/5209">#5209</a>)
   (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5248">#5248</a>)</li>
   </ul>
   <h3>OpenTracing Shim</h3>
   <ul>
   <li>
   <p>OpenTracing Shim: Update Tracer.close()
   (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5151">#5151</a>)</p>
   </li>
   <li>
   <p>Update version to 1.24.0
   (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5198">#5198</a>)</p>
   </li>
   <li>
   <p>Post release 1.23.0
   (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/5202">#5202</a>)</p>
   </li>
   </ul>
   <h3>OpenCensus Shim</h3>
   <ul>
   <li>Addresses opencensus-shim trace issues under otel javaagent
   (<a href="https://redirect.github.com/open-telemetry/opentelemetry-java/pull/4900">#4900</a>)</li>
   </ul>
   <h3>Project tooling</h3>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li>See full diff in <a href="https://github.com/open-telemetry/opentelemetry-java/commits">compare view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.opentelemetry:opentelemetry-exporter-prometheus&package-manager=gradle&previous-version=1.3.0-alpha&new-version=1.24.0-alpha)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   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
   - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@eventmesh.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@eventmesh.apache.org
For additional commands, e-mail: dev-help@eventmesh.apache.org


[GitHub] [eventmesh] dependabot[bot] commented on pull request #3613: Bump io.opentelemetry:opentelemetry-exporter-prometheus from 1.3.0-alpha to 1.24.0-alpha

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] commented on PR #3613:
URL: https://github.com/apache/eventmesh/pull/3613#issuecomment-1495237364

   OK, I won't notify you about version 1.24.x again, unless you re-open this PR. 😢


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@eventmesh.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@eventmesh.apache.org
For additional commands, e-mail: issues-help@eventmesh.apache.org


[GitHub] [eventmesh] dependabot[bot] closed pull request #3613: Bump io.opentelemetry:opentelemetry-exporter-prometheus from 1.3.0-alpha to 1.24.0-alpha

Posted by "dependabot[bot] (via GitHub)" <gi...@apache.org>.
dependabot[bot] closed pull request #3613: Bump io.opentelemetry:opentelemetry-exporter-prometheus from 1.3.0-alpha to 1.24.0-alpha
URL: https://github.com/apache/eventmesh/pull/3613


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@eventmesh.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@eventmesh.apache.org
For additional commands, e-mail: dev-help@eventmesh.apache.org


[GitHub] [eventmesh] mytang0 commented on pull request #3613: Bump io.opentelemetry:opentelemetry-exporter-prometheus from 1.3.0-alpha to 1.24.0-alpha

Posted by "mytang0 (via GitHub)" <gi...@apache.org>.
mytang0 commented on PR #3613:
URL: https://github.com/apache/eventmesh/pull/3613#issuecomment-1495237329

   @dependabot ignore this minor version


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@eventmesh.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@eventmesh.apache.org
For additional commands, e-mail: issues-help@eventmesh.apache.org