Full list of differences found in this compare.
- Remove if no changes for this section before release.
- Remove if no changes for this section before release.
- ExponentialHistogram is a base-2 exponential histogram described in OTEP 149.
- Remove if no changes for this section before release.
Full list of differences found in this compare.
collector/logs/*
is now consideredBeta
. (#311)logs/*
is now consideredBeta
. (#311)
- Metrics data points add a
flags
field with one bit to represent explicitly missing data. (#316)
Full list of differences found in this compare.
collector/metrics/*
is now consideredstable
. (#305)
- 🛑 [DATA MODEL CHANGE] Histogram/Summary sums must be monotonic counters of events (#302)
- 🛑 [DATA MODEL CHANGE] Clarify requirements and semantics for start time (#295)
- 🛑 [BREAKING] Deprecate
labels
field from NumberDataPoint, HistogramDataPoint, SummaryDataPoint and add equivalentattributes
field (#283) - 🛑 [BREAKING] Deprecate
filtered_labels
field from Exemplars and add equivalentfiltered_attributes
field (#283)
- Common - Add bytes (binary) as data type to AnyValue (#297)
- Common - Add schema_url fields as described in OTEP 0152 (#298)
- Remove if no changes for this section before release.
Full list of differences found in this compare.
Release 0.8 was the last in the line of releases marked as "unstable".
This release broke compatibility in more ways than were recognized and
documented at the time of its release. In particular, #278 created
the NumberDataPoint
type and used it in several locations in place
of the former DoubleDataPoint
. The new oneof
in NumberDataPoint
re-used the former DoubleDataPoint
tag number, which means that
pre-0.8 DoubleSum
and DoubleGauge
points would parse correctly as
a 0.8 Sum
and Gauge
points containing double-valued numbers.
However, by virtue of a syntax = "proto3"
declaration, the protocol
compiler for all versions of OTLP have not included field presence,
which means 0 values are not serialized. The result is that valid
OTLP 0.7 DoubleSum
and DoubleGauge
points would not parse
correctly as OTLP 0.8 data. Instead, they parse as
NumberDataPoint
with a missing value in the oneof
field.
- 🛑 [DEPRECATION] Deprecate IntSum, IntGauge, and IntDataPoint (#278)
- 🛑 [DEPRECATION] Deprecate IntExemplar (#281)
- 🛑 [DEPRECATION] Deprecate IntHistogram (#270)
- 🛑 [BREAKING] Rename DoubleGauge to Gauge (#278)
- 🛑 [BREAKING] Rename DoubleSum to Sum (#278)
- 🛑 [BREAKING] Rename DoubleDataPoint to NumberDataPoint (#278)
- 🛑 [BREAKING] Rename DoubleSummary to Summary (#269)
- 🛑 [BREAKING] Rename DoubleExemplar to Exemplar (#281)
- 🛑 [BREAKING] Rename DoubleHistogram to Histogram (#270)
- 🛑 [DATA MODEL CHANGE] Make explicit bounds compatible with OM/Prometheus (#262)
Full list of differences found in this compare.
$$$Protobuf Encodings:**
collector/metrics/*
is now consideredBeta
. (#223)collector/logs/*
is now consideredAlpha
. (#228)logs/*
is now consideredAlpha
. (#228)metrics/*
is now consideredBeta
. (#223)
- Common/Logs/Metrics/Traces - Clarify empty instrumentation (#245)
- Metrics - Add SummaryDataPoint support to Metrics proto (#227)
Full list of differences found in this compare.
- Clarify maturity guarantees (#225)
- Traces - Deprecated old Span status code and added a new status code according to specification (#224)
** Marked for removal
2021-10-22
given Stability Guarantees. - Rename ProbabilitySampler to TraceIdRatioBased (#221)
Full list of differences found in this compare.
Protobuf Encodings:
collector/trace/*
is nowStable
.common/*
is nowStable
.resource/*
is nowStable
.trace/trace.proto
is nowStable
. (#160)
JSON Encodings:
- All messages are now
Alpha
.
- 🛑 [BREAKING] Metrics - protocol was refactored, and lots of breaking changes. ** Removed MetricDescriptor and embedded into Metric and the new data types. ** Add new data types Gauge/Sum/Histogram. ** Make use of the "AggregationTemporality" into the data types that allow that support.
- Rename enum values to follow the proto3 style guide.
- Enable build to use docker image otel/build-protobuf to be used in CI. ** Can also be used by the languages to generate protos.
- 🛑 [BREAKING] Remove generated golang structs from the repository
The following was announced in the release, but has not yet been considered stable. Please see the latest README.md for actual status.
This is a Release Candidate to declare Metrics part of the protocol Stable.
Full list of differences found in this compare.
- Metrics - Add temporality to MetricDescriptor (#140).
- Metrics - Add Monotonic Types (#145)
- Common/Traces - Added support for arrays and maps for attribute values (AnyValue) (#157).
- 🛑 [BREAKING] Metrics - Removed common labels from MetricDescriptor (#144).
The following was announced in the release, but this was not considered Stable until v0.5.0
This is a Release Candidate to declare Traces part of the protocol Stable.
- Initial protos for trace, metrics, resource and OTLP.