Skip to content

Commit

Permalink
Added parameter maxLatency to getlog statistics
Browse files Browse the repository at this point in the history
  • Loading branch information
Niharika Sarode authored and Selkhat committed Mar 15, 2019
1 parent a213848 commit f8d5d18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1839,6 +1839,7 @@ command {
messageType: GET
count: ...
bytes: ...
maxLatency: ...
}
// Only one capacity message will be included
Expand Down
4 changes: 3 additions & 1 deletion kinetic.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ option java_outer_classname = "Kinetic";
// the protocol version number by building this message
// and then reading the value.
message Local {
optional string protocolVersion = 1 [default = "4.0.0"];
optional string protocolVersion = 1 [default = "4.0.1"];
}

// THe message is an authorization and command bytes.
Expand Down Expand Up @@ -565,6 +565,8 @@ message Command {
// the command description. For P2P operations, this is the amount of data moved between
// devices
optional uint64 bytes = 5;
//reports max response time for each operation in ms
optional uint64 maxLatency = 6;
}

message Limits {
Expand Down

0 comments on commit f8d5d18

Please sign in to comment.