Kudu C++ client API
resource_metrics.h
1 // Licensed to the Apache Software Foundation (ASF) under one
2 // or more contributor license agreements. See the NOTICE file
3 // distributed with this work for additional information
4 // regarding copyright ownership. The ASF licenses this file
5 // to you under the Apache License, Version 2.0 (the
6 // "License"); you may not use this file except in compliance
7 // with the License. You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing,
12 // software distributed under the License is distributed on an
13 // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 // KIND, either express or implied. See the License for the
15 // specific language governing permissions and limitations
16 // under the License.
17 #ifndef KUDU_CLIENT_RESOURCE_METRICS_H
18 #define KUDU_CLIENT_RESOURCE_METRICS_H
19 
20 // NOTE: using stdint.h instead of cstdint because this file is supposed
21 // to be processed by a compiler lacking C++11 support.
22 #include <stdint.h>
23 
24 #include <map>
25 #include <string>
26 
27 #include "kudu/util/kudu_export.h"
28 
29 #ifdef KUDU_HEADERS_NO_STUBS
30 #include "kudu/gutil/port.h"
31 #else
32 #include "kudu/client/stubs.h"
33 #endif
34 
35 namespace kudu {
36 namespace client {
37 
39 class KUDU_EXPORT ResourceMetrics {
40  public:
42 
43  ~ResourceMetrics();
44 
47  std::map<std::string, int64_t> Get() const;
48 
56  ATTRIBUTE_DEPRECATED("This function will become private in a future release.")
57  void Increment(const std::string& name, int64_t amount);
58 
64  int64_t GetMetric(const std::string& name) const;
65 
66  private:
67  friend class KuduScanner;
68  class KUDU_NO_EXPORT Data;
69  Data* data_;
70 };
71 
72 } // namespace client
73 } // namespace kudu
74 
75 #endif
Definition: callbacks.h:28
This class is a representation of a single scan.
Definition: client.h:2012
A generic catalog of simple metrics.
Definition: resource_metrics.h:39