Skip to content

Commit

Permalink
Address Sergey's comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigran Najaryan committed Oct 29, 2019
1 parent 9bef7a6 commit f04fa74
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions text/0059-otlp-trace-data-format.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This section specifies data format in Protocol Buffers.
message Resource {
// labels is a collection of attributes that describe the resource. See OpenTelemetry
// specification semantic conventions for standardized label names:
// https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/data-semantic-conventions.md
// https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/data-resource-semantic-conventions.md
repeated AttributeKeyValue labels = 1;
// dropped_labels_count is the number of dropped labels. If the value is 0, then
Expand Down Expand Up @@ -210,6 +210,8 @@ message Span {
// different trace. For example, this can be used in batching operations,
// where a single batch handler processes multiple requests from different
// traces or when the handler receives a request from a different project.
// See also Links specification:
// https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/overview.md#links-between-spans
message Link {
// trace_id is a unique identifier of a trace that this linked span is part of.
// The ID is a 16-byte array.
Expand Down Expand Up @@ -253,7 +255,7 @@ message Status {
// when not set.
int32 code = 1;
// A developer-facing error message, which should be in English.
// A developer-facing human readable error message.
string message = 2;
}
```
Expand Down

0 comments on commit f04fa74

Please sign in to comment.