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

Commit da6971d

Browse files
author
Bogdan Drutu
authored
Add support for float attributes. (#98)
1 parent cbeb482 commit da6971d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/opencensus/proto/trace/v1/trace.proto

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ message Span {
255255
int32 dropped_links_count = 2;
256256
}
257257

258-
// The inclued links.
258+
// The included links.
259259
Links links = 10;
260260

261261
// An optional final status for this span.
@@ -294,6 +294,8 @@ message AttributeValue {
294294
int64 int_value = 2;
295295
// A Boolean value represented by `true` or `false`.
296296
bool bool_value = 3;
297+
// A double value.
298+
double double_value = 4;
297299
}
298300
}
299301

0 commit comments

Comments
 (0)