Merge branch 'master' of https://github.com/leverich/mutilate
This commit is contained in:
commit
5a0fd63455
@ -8,8 +8,10 @@
|
|||||||
|
|
||||||
#ifdef USE_ADAPTIVE_SAMPLER
|
#ifdef USE_ADAPTIVE_SAMPLER
|
||||||
#include "AdaptiveSampler.h"
|
#include "AdaptiveSampler.h"
|
||||||
#else
|
#elif defined(USE_HISTOGRAM_SAMPLER)
|
||||||
#include "HistogramSampler.h"
|
#include "HistogramSampler.h"
|
||||||
|
#else
|
||||||
|
#include "LogHistogramSampler.h"
|
||||||
#endif
|
#endif
|
||||||
#include "AgentStats.h"
|
#include "AgentStats.h"
|
||||||
#include "Operation.h"
|
#include "Operation.h"
|
||||||
@ -21,8 +23,10 @@ class ConnectionStats {
|
|||||||
ConnectionStats(bool _sampling = true) :
|
ConnectionStats(bool _sampling = true) :
|
||||||
#ifdef USE_ADAPTIVE_SAMPLER
|
#ifdef USE_ADAPTIVE_SAMPLER
|
||||||
get_sampler(100000), set_sampler(100000), op_sampler(100000),
|
get_sampler(100000), set_sampler(100000), op_sampler(100000),
|
||||||
#else
|
#elif defined(USE_HISTOGRAM_SAMPLER)
|
||||||
get_sampler(10000,1), set_sampler(10000,1), op_sampler(1000,1),
|
get_sampler(10000,1), set_sampler(10000,1), op_sampler(1000,1),
|
||||||
|
#else
|
||||||
|
get_sampler(200), set_sampler(200), op_sampler(100),
|
||||||
#endif
|
#endif
|
||||||
rx_bytes(0), tx_bytes(0), gets(0), sets(0),
|
rx_bytes(0), tx_bytes(0), gets(0), sets(0),
|
||||||
get_misses(0), sampling(_sampling) {}
|
get_misses(0), sampling(_sampling) {}
|
||||||
@ -31,10 +35,14 @@ class ConnectionStats {
|
|||||||
AdaptiveSampler<Operation> get_sampler;
|
AdaptiveSampler<Operation> get_sampler;
|
||||||
AdaptiveSampler<Operation> set_sampler;
|
AdaptiveSampler<Operation> set_sampler;
|
||||||
AdaptiveSampler<double> op_sampler;
|
AdaptiveSampler<double> op_sampler;
|
||||||
#else
|
#elif defined(USE_HISTOGRAM_SAMPLER)
|
||||||
HistogramSampler get_sampler;
|
HistogramSampler get_sampler;
|
||||||
HistogramSampler set_sampler;
|
HistogramSampler set_sampler;
|
||||||
HistogramSampler op_sampler;
|
HistogramSampler op_sampler;
|
||||||
|
#else
|
||||||
|
LogHistogramSampler get_sampler;
|
||||||
|
LogHistogramSampler set_sampler;
|
||||||
|
LogHistogramSampler op_sampler;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
uint64_t rx_bytes, tx_bytes;
|
uint64_t rx_bytes, tx_bytes;
|
||||||
@ -160,7 +168,7 @@ class ConnectionStats {
|
|||||||
);
|
);
|
||||||
if (newline) printf("\n");
|
if (newline) printf("\n");
|
||||||
}
|
}
|
||||||
#else
|
#elif defined(USE_HISTOGRAM_SAMPLER)
|
||||||
void print_stats(const char *tag, HistogramSampler &sampler,
|
void print_stats(const char *tag, HistogramSampler &sampler,
|
||||||
bool newline = true) {
|
bool newline = true) {
|
||||||
if (sampler.total() == 0) {
|
if (sampler.total() == 0) {
|
||||||
@ -170,6 +178,24 @@ class ConnectionStats {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
printf("%-7s %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f",
|
||||||
|
tag, sampler.average(),
|
||||||
|
sampler.get_nth(0), sampler.get_nth(1), sampler.get_nth(5),
|
||||||
|
sampler.get_nth(10), sampler.get_nth(90),
|
||||||
|
sampler.get_nth(95), sampler.get_nth(99));
|
||||||
|
|
||||||
|
if (newline) printf("\n");
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
void print_stats(const char *tag, LogHistogramSampler &sampler,
|
||||||
|
bool newline = true) {
|
||||||
|
if (sampler.total() == 0) {
|
||||||
|
printf("%-7s %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f",
|
||||||
|
tag, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
|
||||||
|
if (newline) printf("\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
printf("%-7s %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f",
|
printf("%-7s %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f %7.1f",
|
||||||
tag, sampler.average(),
|
tag, sampler.average(),
|
||||||
sampler.get_nth(0), sampler.get_nth(1), sampler.get_nth(5),
|
sampler.get_nth(0), sampler.get_nth(1), sampler.get_nth(5),
|
||||||
|
93
LogHistogramSampler.h
Normal file
93
LogHistogramSampler.h
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
/* -*- c++ -*- */
|
||||||
|
#ifndef LOGHISTOGRAMSAMPLER_H
|
||||||
|
#define LOGHISTOGRAMSAMPLER_H
|
||||||
|
|
||||||
|
#include <inttypes.h>
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "Operation.h"
|
||||||
|
|
||||||
|
#define _POW 1.1
|
||||||
|
|
||||||
|
class LogHistogramSampler {
|
||||||
|
public:
|
||||||
|
std::vector<uint64_t> bins;
|
||||||
|
|
||||||
|
double sum;
|
||||||
|
|
||||||
|
LogHistogramSampler() = delete;
|
||||||
|
LogHistogramSampler(int _bins) : sum(0.0) {
|
||||||
|
assert(_bins > 0);
|
||||||
|
|
||||||
|
bins.resize(_bins + 1, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void sample(const Operation &op) {
|
||||||
|
sample(op.time());
|
||||||
|
}
|
||||||
|
|
||||||
|
void sample(double s) {
|
||||||
|
assert(s >= 0);
|
||||||
|
size_t bin = log(s)/log(_POW);
|
||||||
|
|
||||||
|
sum += s;
|
||||||
|
|
||||||
|
// I("%f", sum);
|
||||||
|
|
||||||
|
if ((int64_t) bin < 0) {
|
||||||
|
bin = 0;
|
||||||
|
} else if (bin >= bins.size()) {
|
||||||
|
bin = bins.size() - 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
bins[bin]++;
|
||||||
|
}
|
||||||
|
|
||||||
|
double average() {
|
||||||
|
// I("%f %d", sum, total());
|
||||||
|
return sum / total();
|
||||||
|
}
|
||||||
|
|
||||||
|
double minimum() {
|
||||||
|
for (size_t i = 0; i < bins.size(); i++)
|
||||||
|
if (bins[i] > 0) return pow(_POW, (double) i + 0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
double get_nth(double nth) {
|
||||||
|
uint64_t count = total();
|
||||||
|
uint64_t n = 0;
|
||||||
|
double target = count * nth/100;
|
||||||
|
|
||||||
|
for (size_t i = 0; i < bins.size(); i++) {
|
||||||
|
n += bins[i];
|
||||||
|
|
||||||
|
if (n > target) { // The nth is inside bins[i].
|
||||||
|
double left = target - (n - bins[i]);
|
||||||
|
return pow(_POW, (double) i) +
|
||||||
|
left / bins[i] * (pow(_POW, (double) (i+1)) - pow(_POW, (double) i));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return pow(_POW, bins.size());
|
||||||
|
}
|
||||||
|
|
||||||
|
uint64_t total() {
|
||||||
|
uint64_t sum = 0.0;
|
||||||
|
|
||||||
|
for (auto i: bins) sum += i;
|
||||||
|
|
||||||
|
return sum;
|
||||||
|
}
|
||||||
|
|
||||||
|
void accumulate(const LogHistogramSampler &h) {
|
||||||
|
assert(bins.size() == h.bins.size());
|
||||||
|
|
||||||
|
for (size_t i = 0; i < bins.size(); i++) bins[i] += h.bins[i];
|
||||||
|
|
||||||
|
sum += h.sum;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // LOGHISTOGRAMSAMPLER_H
|
@ -5,7 +5,8 @@ env = Environment(ENV = os.environ)
|
|||||||
|
|
||||||
env['HAVE_POSIX_BARRIER'] = True
|
env['HAVE_POSIX_BARRIER'] = True
|
||||||
|
|
||||||
env.Append(CPPPATH = ['/usr/local/include'])
|
env.Append(CPPPATH = ['/usr/local/include', '/opt/local/include'])
|
||||||
|
env.Append(LIBPATH = ['/opt/local/lib'])
|
||||||
env.Append(CCFLAGS = '-std=c++0x -D_GNU_SOURCE') # -D__STDC_FORMAT_MACROS')
|
env.Append(CCFLAGS = '-std=c++0x -D_GNU_SOURCE') # -D__STDC_FORMAT_MACROS')
|
||||||
|
|
||||||
conf = env.Configure(config_h = "config.h")
|
conf = env.Configure(config_h = "config.h")
|
||||||
@ -14,7 +15,7 @@ if not conf.CheckCXX():
|
|||||||
print "A compiler with C++11 support is required."
|
print "A compiler with C++11 support is required."
|
||||||
Exit(1)
|
Exit(1)
|
||||||
print "Checking for gengetopt...",
|
print "Checking for gengetopt...",
|
||||||
if Execute("@which gengetopt &> /dev/null"):
|
if env.Execute("@which gengetopt &> /dev/null"):
|
||||||
print "not found (required)"
|
print "not found (required)"
|
||||||
Exit(1)
|
Exit(1)
|
||||||
else: print "found"
|
else: print "found"
|
||||||
@ -27,7 +28,7 @@ if not conf.CheckLibWithHeader("pthread", "pthread.h", "C++"):
|
|||||||
conf.CheckLib("rt", "clock_gettime", language="C++")
|
conf.CheckLib("rt", "clock_gettime", language="C++")
|
||||||
conf.CheckLibWithHeader("zmq", "zmq.hpp", "C++")
|
conf.CheckLibWithHeader("zmq", "zmq.hpp", "C++")
|
||||||
conf.CheckFunc('clock_gettime')
|
conf.CheckFunc('clock_gettime')
|
||||||
if conf.CheckFunc('pthread_barrier_init'):
|
if not conf.CheckFunc('pthread_barrier_init'):
|
||||||
conf.env['HAVE_POSIX_BARRIER'] = False
|
conf.env['HAVE_POSIX_BARRIER'] = False
|
||||||
|
|
||||||
env = conf.Finish()
|
env = conf.Finish()
|
||||||
|
Loading…
Reference in New Issue
Block a user