Commit fa6607e7 authored by Marshall Pierce's avatar Marshall Pierce
Browse files

add Limits to GetLog

parent 9c6b4a18
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1197,6 +1197,7 @@ The `GETLOG` operation gives the client access to log information. The request m
* `CONFIGURATION`
* `STATISTICS`
* `MESSAGES`
* `LIMITS`

Below we will show the message structure used to request all types in a single `GETLOG` request.

+9 −0
Original line number Diff line number Diff line
@@ -333,6 +333,7 @@ option java_outer_classname = "Kinetic";
			CONFIGURATION = 3;
			STATISTICS = 4;
			MESSAGES = 5;
			LIMITS = 6;
		}

		repeated Utilization utilization = 2;
@@ -341,6 +342,7 @@ option java_outer_classname = "Kinetic";
		optional Configuration configuration = 5;
		repeated Statistics statistics = 6;
		optional bytes messages = 7;
		optional Limits limits = 8;

		message Utilization {

@@ -429,6 +431,13 @@ option java_outer_classname = "Kinetic";
			optional uint64 bytes = 5;
		}

		message Limits {
			optional uint32 maxKeySize = 1;
			optional uint32 maxValueSize = 2;
			optional uint32 maxVersionSize = 3;
			optional uint32 maxTagSize = 4;
		}

	}

	message Security {