Version 1.6.0
#3608
Replies: 1 comment 1 reply
-
This seems to be a duplicate of #3607 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
API
hashCode()
ofAttributeKey
is now cached.SpanContext
instances now bypass unneeded validation.Semantic Conventions (alpha)
SemanticAttributes
andResourceAttributes
classes have been updated to match the semanticconventions as of specification release
1.6.1
.SDK
io.opentelemetry.sdk.trace.ReadableSpan
interface has been expanded to includea
getAttribute(AttributeKey)
method.io.opentelemetry.sdk.trace.SpanLimits
class now supports enforcing a maximum Span attributelength (measured in characters) on String and String-array values.
Exporters
optimizations have been done on process of converting to the OTLP formats.
Labels
, onlyAttributes
. Thismeans that your collector MUST support at least OTLP version
0.9.0
to properly ingest metricdata.
OtlpHttpMetricExporter
class has been moved intothe
io.opentelemetry.exporter.otlp.http.metrics
package.OtlpGrpcSpanExporter
andOtlpGrpcMetricExporter
will now wait for the underlyinggrpc channel to be terminated when shutting down.
gzip
compression. It is not enabled by default.SDK Extensions
AwsXrayIdGenerator
in theopentelemetry-sdk-extension-aws
module has been deprecated. Thisimplementation has been superseded by the one in
the opentelemetry-java-contrib
project and will not be maintained here going forward.
Auto-configuration (alpha)
otel.traces.exporter
/OTEL_TRACES_EXPORTER
option now supports a comma-separated list ofexporters.
configuration in order to have a Metrics SDK configured.
module:
opentelemetry-sdk-extension-autoconfigure-spi
.ConfigProperties
andConfigurationException
have been moved to a newpackage (
io.opentelemetry.sdk.autoconfigure.spi
) andmodule (
opentelemetry-sdk-extension-autoconfigure-spi
).ConfigProperties
instance on their methods.gracefully and will not bubble up unless you have explicitly requested the bad implementation as
the one to use.
gzip
compress for the OTLP exporters via theotel.exporter.otlp.compression
/
OTEL_EXPORTER_OTLP_COMPRESSION
configuration option.otel.span.attribute.value.length.limit
/
OTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMIT
configuration option.Metrics (alpha)
configuration APIs.
Histogram
instrument has been changed to be a Histogram, ratherthan a Summary.
specification. Please reach out on CNCF slack in
the #otel-java channel, or in
a github discussion if you
need assistance with converting to the new Views API.
Labels
, onlyAttributes
. Thismeans that your collector MUST support at least OTLP version
0.9.0
to properly ingest metricdata.
the future.
This discussion was created from the release Version 1.6.0.
Beta Was this translation helpful? Give feedback.
All reactions