2 #include <boost/thread/mutex.hpp>
13 return tm.tv_sec * 1e9 + tm.tv_nsec;
16 if (gettimeofday(&tm, 0) == 0)
17 return tm.tv_sec * 1e9 + tm.tv_usec * 1e3;
37 std::ostringstream os;
39 os <<
"stats: class/operation/attempts/successes/amount/time-total/time-min/time-max\n";
41 for (OperationStats::iterator
j =
i->second->begin ();
j !=
i->second->end (); ++
j, first =
false)
42 os << (first ?
"" :
"; ")
45 <<
j->second.attempts <<
'/'
46 <<
j->second.successes <<
'/'
47 << (
j->second.amount / 1024 / 1024) <<
"MB/"
48 << (
j->second.timeTotal / 1000 / 1000) <<
"ms/"
49 << (
j->second.timeMin / 1000 / 1000) <<
"ms/"
50 << (
j->second.timeMax / 1000 / 1000) <<
"ms";
57 std::ostringstream os;
58 os <<
"<storage-timing-summary>\n";
60 for (OperationStats::iterator
j =
i->second->begin ();
j !=
i->second->end (); ++
j)
61 os <<
" <counter-value subsystem='" <<
i->first
62 <<
"' counter-name='" <<
j->first
63 <<
"' num-operations='" <<
j->second.attempts
64 <<
"' num-successful-operations='" <<
j->second.successes
65 <<
"' total-megabytes='" << (
j->second.amount / 1024 / 1024)
66 <<
"' total-msecs='" << (
j->second.timeTotal / 1000 / 1000)
67 <<
"' min-msecs='" << (
j->second.timeMin / 1000 / 1000)
68 <<
"' max-msecs='" << (
j->second.timeMax / 1000 / 1000) <<
"'/>\n";
69 os <<
"</storage-timing-summary>";
75 int const oneM = 1000 * 1000;
76 int const oneMeg = 1024 * 1024;
78 for (OperationStats::iterator
j =
i->second->begin();
j !=
i->second->end(); ++
j) {
79 std::ostringstream os;
80 os <<
"Timing-" <<
i->first <<
"-" <<
j->first <<
"-";
81 summary.insert(std::make_pair(os.str() +
"numOperations",
i2str(
j->second.attempts)));
82 summary.insert(std::make_pair(os.str() +
"numSuccessfulOperations",
i2str(
j->second.successes)));
83 summary.insert(std::make_pair(os.str() +
"totalMegabytes",
d2str(
j->second.amount / oneMeg)));
84 summary.insert(std::make_pair(os.str() +
"totalMsecs",
d2str(
j->second.timeTotal / oneM)));
85 summary.insert(std::make_pair(os.str() +
"minMsecs",
d2str(
j->second.timeMin / oneM)));
86 summary.insert(std::make_pair(os.str() +
"maxMsecs",
d2str(
j->second.timeMax / oneM)));
98 boost::shared_ptr<OperationStats> &opstats =
s_stats [storageClass];
101 OperationStats::iterator pos = opstats->find (operation);
102 if (pos == opstats->end ()) {
103 Counter x = { 0, 0, 0, 0, 0, 0, 0 };
111 : m_counter (counter),
123 m_counter.successes++;
125 m_counter.vector_count +=
count;
126 m_counter.vector_square += count*
count;
127 m_counter.amount += amount;
128 m_counter.amount_square += amount*amount;
130 m_counter.timeTotal += elapsed;
131 if (elapsed < m_counter.timeMin || m_counter.successes == 1)
132 m_counter.timeMin = elapsed;
133 if (elapsed > m_counter.timeMax)
134 m_counter.timeMax = elapsed;
static double timeRealNanoSecs(void)
void tick(double amount=0., int64_t tick=0) const
static void fillSummary(std::map< std::string, std::string > &summary)
static boost::mutex mutex
std::map< std::string, Counter > OperationStats
static const StorageStats & summary(void)
StorageAccount::StorageStats s_stats
std::map< std::string, boost::shared_ptr< OperationStats > > StorageStats
static std::string d2str(double d)
Container::value_type value_type
static std::string i2str(int i)
static std::string summaryXML(void)
static Counter & counter(const std::string &storageClass, const std::string &operation)
static std::atomic< unsigned int > counter
static std::string summaryText(bool banner=false)