Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
krisztianfekete committed Apr 10, 2024
1 parent aabc9cb commit 893bb76
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions opentelemetry/proto/metrics/v1/metrics.proto
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,25 @@ option go_package = "go.opentelemetry.io/proto/otlp/metrics/v1";
// storage, OR can be embedded by other protocols that transfer OTLP metrics
// data but do not implement the OTLP protocol.
//
// MetricsData
// ├── ResourceMetrics
// │ ├── Resource
// │ ├── SchemaURL
// │ └── ScopeMetrics
// │ ├── Scope
// │ ├── SchemaURL
// │ └── Metric
// │ ├── Name
// │ ├── Description
// │ ├── Unit
// │ └── data
// │ ├── Gauge
// │ ├── Sum
// │ ├── Histogram
// │ ├── ExponentialHistogram
// │ └── Summary
// └── ...
//
// The main difference between this message and collector protocol is that
// in this message there will not be any "control" or "metadata" specific to
// OTLP protocol.
Expand Down Expand Up @@ -97,25 +116,6 @@ message ScopeMetrics {
// - DataPoint contains timestamps, attributes, and one of the possible value type
// fields.
//
// MetricsData
// ├── ResourceMetrics
// │ ├── Resource
// │ ├── SchemaURL
// │ └── ScopeMetrics
// │ ├── Scope
// │ ├── SchemaURL
// │ └── Metric
// │ ├── Name
// │ ├── Description
// │ ├── Unit
// │ └── data
// │ ├── Gauge
// │ ├── Sum
// │ ├── Histogram
// │ ├── ExponentialHistogram
// │ └── Summary
// └── ...
//
// Data [One of Gauge, Sum, Histogram, Summary, ...]
// +-----------+
// |... | // Metadata about the Data.
Expand Down

0 comments on commit 893bb76

Please sign in to comment.