2013-10-16 23:59:46 +02: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.
|
|
|
|
//
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/statistics.h"
|
2013-06-19 05:28:41 +02:00
|
|
|
#include <cstdio>
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2013-06-19 05:28:41 +02:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
// a buffer size used for temp string buffers
|
|
|
|
const int kBufferSize = 200;
|
|
|
|
|
|
|
|
std::string HistogramToString (
|
|
|
|
Statistics* dbstats,
|
|
|
|
const Histograms& histogram_type,
|
|
|
|
const std::string& name) {
|
|
|
|
|
|
|
|
char buffer[kBufferSize];
|
|
|
|
HistogramData histogramData;
|
|
|
|
dbstats->histogramData(histogram_type, &histogramData);
|
|
|
|
snprintf(
|
|
|
|
buffer,
|
|
|
|
kBufferSize,
|
|
|
|
"%s statistics Percentiles :=> 50 : %f 95 : %f 99 : %f\n",
|
|
|
|
name.c_str(),
|
|
|
|
histogramData.median,
|
|
|
|
histogramData.percentile95,
|
|
|
|
histogramData.percentile99
|
|
|
|
);
|
|
|
|
return std::string(buffer);
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string TickerToString (
|
|
|
|
Statistics* dbstats,
|
|
|
|
const Tickers& ticker,
|
|
|
|
const std::string& name) {
|
|
|
|
|
|
|
|
char buffer[kBufferSize];
|
|
|
|
snprintf(buffer, kBufferSize, "%s COUNT : %ld\n",
|
|
|
|
name.c_str(), dbstats->getTickerCount(ticker));
|
|
|
|
return std::string(buffer);
|
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
std::string Statistics::ToString() {
|
|
|
|
std::string res;
|
|
|
|
res.reserve(20000);
|
|
|
|
for (const auto& t : TickersNameMap) {
|
|
|
|
res.append(TickerToString(this, t.first, t.second));
|
|
|
|
}
|
|
|
|
for (const auto& h : HistogramsNameMap) {
|
|
|
|
res.append(HistogramToString(this, h.first, h.second));
|
|
|
|
}
|
|
|
|
res.shrink_to_fit();
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|