64 lines
1.9 KiB
C++
64 lines
1.9 KiB
C++
// Copyright (c) 2013, Facebook, Inc. All rights reserved.
|
|
// This source code is licensed under the BSD-style license found in the
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
// of patent rights can be found in the PATENTS file in the same directory.
|
|
//
|
|
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
|
|
#pragma once
|
|
#include <cassert>
|
|
#include <stdlib.h>
|
|
#include <vector>
|
|
#include <memory>
|
|
|
|
#include "rocksdb/statistics.h"
|
|
#include "util/histogram.h"
|
|
#include "port/port.h"
|
|
#include "util/mutexlock.h"
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
class DBStatistics: public Statistics {
|
|
public:
|
|
DBStatistics() : allTickers_(TICKER_ENUM_MAX),
|
|
allHistograms_(HISTOGRAM_ENUM_MAX) { }
|
|
|
|
virtual ~DBStatistics() {}
|
|
|
|
virtual long getTickerCount(Tickers tickerType) {
|
|
assert(tickerType < TICKER_ENUM_MAX);
|
|
return allTickers_[tickerType].getCount();
|
|
}
|
|
|
|
virtual void setTickerCount(Tickers tickerType, uint64_t count) {
|
|
assert(tickerType < TICKER_ENUM_MAX);
|
|
allTickers_[tickerType].setTickerCount(count);
|
|
}
|
|
|
|
virtual void recordTick(Tickers tickerType, uint64_t count) {
|
|
assert(tickerType < TICKER_ENUM_MAX);
|
|
allTickers_[tickerType].recordTick(count);
|
|
}
|
|
|
|
virtual void measureTime(Histograms histogramType, uint64_t value) {
|
|
assert(histogramType < HISTOGRAM_ENUM_MAX);
|
|
allHistograms_[histogramType].Add(value);
|
|
}
|
|
|
|
virtual void histogramData(Histograms histogramType,
|
|
HistogramData * const data) {
|
|
assert(histogramType < HISTOGRAM_ENUM_MAX);
|
|
allHistograms_[histogramType].Data(data);
|
|
}
|
|
|
|
std::vector<Ticker> allTickers_;
|
|
std::vector<HistogramImpl> allHistograms_;
|
|
};
|
|
|
|
std::shared_ptr<Statistics> CreateDBStatistics();
|
|
|
|
} // namespace rocksdb
|