@@ -55,7 +55,8 @@ pub struct ResourceMetrics {
5555 #[ prost( message, repeated, tag = "2" ) ]
5656 pub scope_metrics : :: prost:: alloc:: vec:: Vec < ScopeMetrics > ,
5757 /// The Schema URL, if known. This is the identifier of the Schema that the resource data
58- /// is recorded in. To learn more about Schema URL see
58+ /// is recorded in. Notably, the last part of the URL path is the version number of the
59+ /// schema: http\[s\]://server\[:port\]/path/<version>. To learn more about Schema URL see
5960 /// <https://opentelemetry.io/docs/specs/otel/schemas/#schema-url>
6061 /// This schema_url applies to the data in the "resource" field. It does not apply
6162 /// to the data in the "scope_metrics" field which have their own schema_url field.
@@ -78,7 +79,8 @@ pub struct ScopeMetrics {
7879 #[ prost( message, repeated, tag = "2" ) ]
7980 pub metrics : :: prost:: alloc:: vec:: Vec < Metric > ,
8081 /// The Schema URL, if known. This is the identifier of the Schema that the metric data
81- /// is recorded in. To learn more about Schema URL see
82+ /// is recorded in. Notably, the last part of the URL path is the version number of the
83+ /// schema: http\[s\]://server\[:port\]/path/<version>. To learn more about Schema URL see
8284 /// <https://opentelemetry.io/docs/specs/otel/schemas/#schema-url>
8385 /// This schema_url applies to all metrics in the "metrics" field.
8486 #[ prost( string, tag = "3" ) ]
@@ -437,7 +439,7 @@ pub struct HistogramDataPoint {
437439 /// events, and is assumed to be monotonic over the values of these events.
438440 /// Negative events *can* be recorded, but sum should not be filled out when
439441 /// doing so. This is specifically to enforce compatibility w/ OpenMetrics,
440- /// see: <https://github.com/OpenObservability /OpenMetrics/blob/main /specification/OpenMetrics.md#histogram>
442+ /// see: <https://github.com/prometheus /OpenMetrics/blob/v1.0.0 /specification/OpenMetrics.md#histogram>
441443 #[ prost( double, optional, tag = "5" ) ]
442444 pub sum : :: core:: option:: Option < f64 > ,
443445 /// bucket_counts is an optional field contains the count values of histogram
@@ -520,7 +522,7 @@ pub struct ExponentialHistogramDataPoint {
520522 /// events, and is assumed to be monotonic over the values of these events.
521523 /// Negative events *can* be recorded, but sum should not be filled out when
522524 /// doing so. This is specifically to enforce compatibility w/ OpenMetrics,
523- /// see: <https://github.com/OpenObservability /OpenMetrics/blob/main /specification/OpenMetrics.md#histogram>
525+ /// see: <https://github.com/prometheus /OpenMetrics/blob/v1.0.0 /specification/OpenMetrics.md#histogram>
524526 #[ prost( double, optional, tag = "5" ) ]
525527 pub sum : :: core:: option:: Option < f64 > ,
526528 /// scale describes the resolution of the histogram. Boundaries are
@@ -643,7 +645,7 @@ pub struct SummaryDataPoint {
643645 /// events, and is assumed to be monotonic over the values of these events.
644646 /// Negative events *can* be recorded, but sum should not be filled out when
645647 /// doing so. This is specifically to enforce compatibility w/ OpenMetrics,
646- /// see: <https://github.com/OpenObservability /OpenMetrics/blob/main /specification/OpenMetrics.md#summary>
648+ /// see: <https://github.com/prometheus /OpenMetrics/blob/v1.0.0 /specification/OpenMetrics.md#summary>
647649 #[ prost( double, tag = "5" ) ]
648650 pub sum : f64 ,
649651 /// (Optional) list of values at different quantiles of the distribution calculated
0 commit comments