Preparing development version 2.4.11-SNAPSHOT
[hbase.git] / hbase-rest / src / main / protobuf / StorageClusterStatusMessage.proto
blobd4959875b8b339490d08a7eb0955bb1be5a7e95e
1 /**
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements.  See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership.  The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License.  You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18 syntax = "proto2";
19 package org.apache.hadoop.hbase.rest.protobuf.generated;
21 message StorageClusterStatus {
22   message Region {
23     required bytes name = 1;
24     optional int32 stores = 2;
25     optional int32 storefiles = 3;
26     optional int32 storefileSizeMB = 4;
27     optional int32 memStoreSizeMB = 5;
28     optional int64 storefileIndexSizeKB = 6;
29     optional int64 readRequestsCount = 7;
30     optional int64 writeRequestsCount = 8;
31     optional int32 rootIndexSizeKB = 9;
32     optional int32 totalStaticIndexSizeKB = 10;
33     optional int32 totalStaticBloomSizeKB = 11;
34     optional int64 totalCompactingKVs = 12;
35     optional int64 currentCompactedKVs = 13;
36   }
37   message Node {
38     required string name = 1;    // name:port
39     optional int64 startCode = 2;
40     optional int64 requests = 3;
41     optional int32 heapSizeMB = 4;
42     optional int32 maxHeapSizeMB = 5;
43     repeated Region regions = 6;
44   }
45   // node status
46   repeated Node liveNodes = 1;
47   repeated string deadNodes = 2;
48   // summary statistics
49   optional int32 regions = 3;
50   optional int64 requests = 4;
51   optional double averageLoad = 5;