Skip to content

Commit

Permalink
Address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigran Najaryan committed Jun 9, 2020
1 parent 664eefc commit dcdb2a7
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 54 deletions.
100 changes: 50 additions & 50 deletions gen/go/common/v1/common.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions opentelemetry/proto/common/v1/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ message AnyValue {
bool bool_value = 2;
int64 int_value = 3;
double double_value = 4;
ArrayValue array_values = 5;
AttributeKeyValueList kvlist_values = 6;
ArrayValue array_value = 5;
AttributeKeyValueList kvlist_value = 6;
}
}

message ArrayValue {
// Array of values. The array may be empty (contain 0 elements).
repeated AnyValue array_values = 1;
repeated AnyValue values = 1;
}

message AttributeKeyValueList {
// List of key-value pairs. The list may be empty (contain 0 elements).
repeated AttributeKeyValue kvlist_values = 1;
repeated AttributeKeyValue values = 1;
}

// AttributeKeyValue is a key-value pair that is used to store Span attributes, Link
Expand Down

0 comments on commit dcdb2a7

Please sign in to comment.