summaryrefslogtreecommitdiffstats
path: root/src/test/osd/TestOpStat.cc
blob: 48b87b885b0ea6eb216fda75de0b3ef74703a672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- 
#include "include/interval_set.h"
#include "include/buffer.h"
#include <list>
#include <map>
#include <set>
#include "RadosModel.h"
#include "TestOpStat.h"

void TestOpStat::begin(TestOp *in) {
  std::lock_guard l{stat_lock};
  stats[in->getType()].begin(in);
}

void TestOpStat::end(TestOp *in) {
  std::lock_guard l{stat_lock};
  stats[in->getType()].end(in);
}

void TestOpStat::TypeStatus::export_latencies(map<double,uint64_t> &in) const
{
  map<double,uint64_t>::iterator i = in.begin();
  multiset<uint64_t>::iterator j = latencies.begin();
  int count = 0;
  while (j != latencies.end() && i != in.end()) {
    count++;
    if ((((double)count)/((double)latencies.size())) * 100 >= i->first) {
      i->second = *j;
      ++i;
    }
    ++j;
  }
}
  
std::ostream & operator<<(std::ostream &out, const TestOpStat &rhs)
{
  std::lock_guard l{rhs.stat_lock};
  for (auto i = rhs.stats.begin();
       i != rhs.stats.end();
       ++i) {
    map<double,uint64_t> latency;
    latency[10] = 0;
    latency[50] = 0;
    latency[90] = 0;
    latency[99] = 0;
    i->second.export_latencies(latency);
    
    out << i->first << " latency: " << std::endl;
    for (map<double,uint64_t>::iterator j = latency.begin();
	 j != latency.end();
	 ++j) {
      if (j->second == 0) break;
      out << "\t" << j->first << "th percentile: " 
	  << j->second / 1000 << "ms" << std::endl;
    }
  }
  return out;
}