Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce int and float types to trace.proto #782

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions kaldb/src/main/proto/trace.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ enum ValueType {
INT64 = 2;
FLOAT64 = 3;
BINARY = 4;
INT32 = 5;
FLOAT32 = 6;
};

message KeyValue {
Expand All @@ -31,6 +33,8 @@ message KeyValue {
int64 v_int64 = 5;
double v_float64 = 6;
bytes v_binary = 7;
int32 v_int32 = 8;
float v_float32 = 9;
}

// A span defines a single event in a trace.
Expand Down
Loading