Skip to content

Commit

Permalink
update links to openmetrics to reference the v1.0.0 release (#656)
Browse files Browse the repository at this point in the history
  • Loading branch information
dashpole authored Jan 2, 2025
1 parent 7535feb commit 6a4af9c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ public struct Opentelemetry_Proto_Metrics_V1_HistogramDataPoint {
/// events, and is assumed to be monotonic over the values of these events.
/// Negative events *can* be recorded, but sum should not be filled out when
/// doing so. This is specifically to enforce compatibility w/ OpenMetrics,
/// see: https://github.com/OpenObservability/OpenMetrics/blob/main/specification/OpenMetrics.md#histogram
/// see: https://github.com/prometheus/OpenMetrics/blob/v1.0.0/specification/OpenMetrics.md#histogram
public var sum: Double {
get {return _sum ?? 0}
set {_sum = newValue}
Expand Down Expand Up @@ -816,7 +816,7 @@ public struct Opentelemetry_Proto_Metrics_V1_ExponentialHistogramDataPoint {
/// events, and is assumed to be monotonic over the values of these events.
/// Negative events *can* be recorded, but sum should not be filled out when
/// doing so. This is specifically to enforce compatibility w/ OpenMetrics,
/// see: https://github.com/OpenObservability/OpenMetrics/blob/main/specification/OpenMetrics.md#histogram
/// see: https://github.com/prometheus/OpenMetrics/blob/v1.0.0/specification/OpenMetrics.md#histogram
public var sum: Double {
get {return _sum ?? 0}
set {_sum = newValue}
Expand Down Expand Up @@ -984,7 +984,7 @@ public struct Opentelemetry_Proto_Metrics_V1_SummaryDataPoint {
/// events, and is assumed to be monotonic over the values of these events.
/// Negative events *can* be recorded, but sum should not be filled out when
/// doing so. This is specifically to enforce compatibility w/ OpenMetrics,
/// see: https://github.com/OpenObservability/OpenMetrics/blob/main/specification/OpenMetrics.md#summary
/// see: https://github.com/prometheus/OpenMetrics/blob/v1.0.0/specification/OpenMetrics.md#summary
public var sum: Double = 0

/// (Optional) list of values at different quantiles of the distribution calculated
Expand Down

0 comments on commit 6a4af9c

Please sign in to comment.