Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
Add support for float attributes. (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Drutu committed Sep 18, 2018
1 parent cbeb482 commit da6971d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/opencensus/proto/trace/v1/trace.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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;
}
}

Expand Down

0 comments on commit da6971d

Please sign in to comment.