-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOSDPerfMetricCollector.cc
32 lines (26 loc) · 1.04 KB
/
OSDPerfMetricCollector.cc
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
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include "common/debug.h"
#include "common/errno.h"
#include "messages/MMgrReport.h"
#include "OSDPerfMetricCollector.h"
#define dout_context g_ceph_context
#define dout_subsys ceph_subsys_mgr
#undef dout_prefix
#define dout_prefix *_dout << "mgr.osd_perf_metric_collector " << __func__ << " "
OSDPerfMetricCollector::OSDPerfMetricCollector(MetricListener &listener)
: MetricCollector<OSDPerfMetricQuery,
OSDPerfMetricLimit,
OSDPerfMetricKey,
OSDPerfMetricReport>(listener) {
}
void OSDPerfMetricCollector::process_reports(const MetricPayload &payload) {
const std::map<OSDPerfMetricQuery, OSDPerfMetricReport> &reports =
boost::get<OSDMetricPayload>(payload).report;
std::lock_guard locker(lock);
process_reports_generic(
reports, [](PerformanceCounter *counter, const PerformanceCounter &update) {
counter->first += update.first;
counter->second += update.second;
});
}