From da6971d73028547b7e34db95e248fd053fc75b81 Mon Sep 17 00:00:00 2001 From: Bogdan Drutu Date: Mon, 17 Sep 2018 19:22:37 -0700 Subject: [PATCH] Add support for float attributes. (#98) --- src/opencensus/proto/trace/v1/trace.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/opencensus/proto/trace/v1/trace.proto b/src/opencensus/proto/trace/v1/trace.proto index 3ad4afb..35cc5c6 100644 --- a/src/opencensus/proto/trace/v1/trace.proto +++ b/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; } }