Add support for float attributes. (#98)

pull/114/head
Bogdan Drutu 6 years ago committed by GitHub
parent cbeb482511
commit da6971d730
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/opencensus/proto/trace/v1/trace.proto

@ -255,7 +255,7 @@ message Span {
int32 dropped_links_count = 2;
}
// The inclued links.
// The included links.
Links links = 10;
// An optional final status for this span.
@ -294,6 +294,8 @@ message AttributeValue {
int64 int_value = 2;
// A Boolean value represented by `true` or `false`.
bool bool_value = 3;
// A double value.
double double_value = 4;
}
}

Loading…
Cancel
Save