2014-01-17 21:46:06 +01:00
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "rocksdb/statistics.h"
|
|
|
|
|
2014-01-24 01:11:55 +01:00
|
|
|
#include <vector>
|
|
|
|
#include <atomic>
|
2014-07-28 21:05:36 +02:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "util/histogram.h"
|
|
|
|
#include "util/mutexlock.h"
|
|
|
|
#include "port/likely.h"
|
2014-01-24 01:11:55 +01:00
|
|
|
|
2014-01-17 21:46:06 +01:00
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
|
2014-07-28 21:05:36 +02:00
|
|
|
enum TickersInternal : uint32_t {
|
|
|
|
INTERNAL_TICKER_ENUM_START = TICKER_ENUM_MAX,
|
|
|
|
INTERNAL_TICKER_ENUM_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
enum HistogramsInternal : uint32_t {
|
|
|
|
INTERNAL_HISTOGRAM_START = HISTOGRAM_ENUM_MAX,
|
|
|
|
INTERNAL_HISTOGRAM_ENUM_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-01-17 21:46:06 +01:00
|
|
|
class StatisticsImpl : public Statistics {
|
|
|
|
public:
|
2014-07-28 21:05:36 +02:00
|
|
|
StatisticsImpl(std::shared_ptr<Statistics> stats,
|
|
|
|
bool enable_internal_stats);
|
2014-01-17 21:46:06 +01:00
|
|
|
virtual ~StatisticsImpl();
|
|
|
|
|
2014-07-28 21:05:36 +02:00
|
|
|
virtual uint64_t getTickerCount(uint32_t ticker_type) const override;
|
|
|
|
virtual void histogramData(uint32_t histogram_type,
|
|
|
|
HistogramData* const data) const override;
|
|
|
|
|
|
|
|
virtual void setTickerCount(uint32_t ticker_type, uint64_t count) override;
|
|
|
|
virtual void recordTick(uint32_t ticker_type, uint64_t count) override;
|
|
|
|
virtual void measureTime(uint32_t histogram_type, uint64_t value) override;
|
|
|
|
|
|
|
|
virtual std::string ToString() const override;
|
|
|
|
virtual bool HistEnabledForType(uint32_t type) const override;
|
2014-01-17 21:46:06 +01:00
|
|
|
|
|
|
|
private:
|
2014-07-28 21:05:36 +02:00
|
|
|
std::shared_ptr<Statistics> stats_shared_;
|
|
|
|
Statistics* stats_;
|
|
|
|
bool enable_internal_stats_;
|
|
|
|
|
2014-01-30 00:08:41 +01:00
|
|
|
struct Ticker {
|
|
|
|
Ticker() : value(uint_fast64_t()) {}
|
|
|
|
|
|
|
|
std::atomic_uint_fast64_t value;
|
|
|
|
// Pad the structure to make it size of 64 bytes. A plain array of
|
|
|
|
// std::atomic_uint_fast64_t results in huge performance degradataion
|
|
|
|
// due to false sharing.
|
|
|
|
char padding[64 - sizeof(std::atomic_uint_fast64_t)];
|
|
|
|
};
|
|
|
|
|
2014-07-28 21:05:36 +02:00
|
|
|
Ticker tickers_[INTERNAL_TICKER_ENUM_MAX] __attribute__((aligned(64)));
|
|
|
|
HistogramImpl histograms_[INTERNAL_HISTOGRAM_ENUM_MAX]
|
|
|
|
__attribute__((aligned(64)));
|
2014-01-17 21:46:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// Utility functions
|
2014-07-28 21:05:36 +02:00
|
|
|
inline void MeasureTime(Statistics* statistics, uint32_t histogram_type,
|
2014-01-17 21:46:06 +01:00
|
|
|
uint64_t value) {
|
|
|
|
if (statistics) {
|
2014-07-28 21:05:36 +02:00
|
|
|
statistics->measureTime(histogram_type, value);
|
2014-01-17 21:46:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-28 21:05:36 +02:00
|
|
|
inline void RecordTick(Statistics* statistics, uint32_t ticker_type,
|
2014-01-17 21:46:06 +01:00
|
|
|
uint64_t count = 1) {
|
|
|
|
if (statistics) {
|
2014-07-28 21:05:36 +02:00
|
|
|
statistics->recordTick(ticker_type, count);
|
2014-01-17 21:46:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-28 21:05:36 +02:00
|
|
|
inline void SetTickerCount(Statistics* statistics, uint32_t ticker_type,
|
2014-01-17 21:46:06 +01:00
|
|
|
uint64_t count) {
|
|
|
|
if (statistics) {
|
2014-07-28 21:05:36 +02:00
|
|
|
statistics->setTickerCount(ticker_type, count);
|
2014-01-17 21:46:06 +01:00
|
|
|
}
|
|
|
|
}
|
2014-07-28 21:10:49 +02:00
|
|
|
|
2014-01-17 21:46:06 +01:00
|
|
|
}
|