mirror of
https://github.com/ceph/ceph
synced 2025-02-19 17:08:05 +00:00
Rename ProfLogger to PerfCounters
Part 1: file names Signed-off-by: Colin McCabe <colin.mccabe@dreamhost.com>
This commit is contained in:
parent
9b1ad7b99e
commit
1cf5211e72
@ -475,11 +475,11 @@ unittest_crypto_LDADD = ${LIBGLOBAL_LDA} ${UNITTEST_LDADD}
|
||||
unittest_crypto_CXXFLAGS = ${CRYPTO_CXXFLAGS} ${AM_CXXFLAGS} ${UNITTEST_CXXFLAGS}
|
||||
check_PROGRAMS += unittest_crypto
|
||||
|
||||
unittest_proflogger_SOURCES = test/proflogger.cc
|
||||
unittest_proflogger_LDFLAGS = -lrt ${AM_LDFLAGS}
|
||||
unittest_proflogger_LDADD = ${LIBGLOBAL_LDA} ${UNITTEST_LDADD}
|
||||
unittest_proflogger_CXXFLAGS = ${AM_CXXFLAGS} ${UNITTEST_CXXFLAGS}
|
||||
check_PROGRAMS += unittest_proflogger
|
||||
unittest_perf_counters_SOURCES = test/perf_counters.cc
|
||||
unittest_perf_counters_LDFLAGS = -lrt ${AM_LDFLAGS}
|
||||
unittest_perf_counters_LDADD = ${LIBGLOBAL_LDA} ${UNITTEST_LDADD}
|
||||
unittest_perf_counters_CXXFLAGS = ${AM_CXXFLAGS} ${UNITTEST_CXXFLAGS}
|
||||
check_PROGRAMS += unittest_perf_counters
|
||||
|
||||
unittest_admin_socket_SOURCES = test/admin_socket.cc
|
||||
unittest_admin_socket_LDFLAGS = -lrt ${AM_LDFLAGS}
|
||||
@ -690,7 +690,7 @@ libcommon_files = \
|
||||
msg/Message.cc \
|
||||
msg/msg_types.cc \
|
||||
common/BackTrace.cc \
|
||||
common/ProfLogger.cc \
|
||||
common/perf_counters.cc \
|
||||
common/admin_socket.cc \
|
||||
common/admin_socket_client.cc \
|
||||
common/Clock.cc \
|
||||
@ -887,7 +887,7 @@ noinst_HEADERS = \
|
||||
common/ConfUtils.h\
|
||||
common/DecayCounter.h\
|
||||
common/Finisher.h\
|
||||
common/ProfLogger.h\
|
||||
common/perf_counters.h\
|
||||
common/admin_socket.h \
|
||||
common/admin_socket_client.h \
|
||||
common/MemoryModel.h\
|
||||
|
@ -54,7 +54,7 @@ using namespace std;
|
||||
|
||||
#include "common/Cond.h"
|
||||
#include "common/Mutex.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
|
||||
|
||||
|
||||
|
@ -24,7 +24,7 @@ using namespace std;
|
||||
|
||||
|
||||
#include "include/filepath.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
|
@ -13,7 +13,7 @@
|
||||
*/
|
||||
|
||||
#include "common/admin_socket.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
#include "common/Thread.h"
|
||||
#include "common/config.h"
|
||||
#include "common/config_obs.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
#include "common/admin_socket.h"
|
||||
#include "common/DoutStreambuf.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
#include "common/Thread.h"
|
||||
#include "common/ceph_context.h"
|
||||
#include "common/config.h"
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include "common/Clock.h"
|
||||
#include "common/ConfUtils.h"
|
||||
#include "common/DoutStreambuf.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
#include "common/ceph_argparse.h"
|
||||
#include "global/global_init.h"
|
||||
#include "common/config.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
#define __STDC_FORMAT_MACROS // for PRId64, etc.
|
||||
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
#include "common/dout.h"
|
||||
#include "common/errno.h"
|
||||
|
@ -13,8 +13,8 @@
|
||||
*/
|
||||
|
||||
|
||||
#ifndef CEPH_PROF_LOG_H
|
||||
#define CEPH_PROF_LOG_H
|
||||
#ifndef CEPH_COMMON_PERF_COUNTERS_H
|
||||
#define CEPH_COMMON_PERF_COUNTERS_H
|
||||
|
||||
#include "common/config_obs.h"
|
||||
#include "common/Mutex.h"
|
@ -14,7 +14,7 @@
|
||||
|
||||
#include "common/BackTrace.h"
|
||||
#include "common/DoutStreambuf.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
#include "global/pidfile.h"
|
||||
#include "common/debug.h"
|
||||
#include "common/signal.h"
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
#include "common/BackTrace.h"
|
||||
#include "common/DoutStreambuf.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
#include "common/config.h"
|
||||
#include "common/debug.h"
|
||||
#include "global/pidfile.h"
|
||||
|
@ -36,7 +36,7 @@
|
||||
#include "msg/Message.h"
|
||||
#include "msg/Messenger.h"
|
||||
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
#include "common/MemoryModel.h"
|
||||
#include "osdc/Journaler.h"
|
||||
#include "osdc/Filer.h"
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include "osdc/Journaler.h"
|
||||
|
||||
#include "common/entity_name.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
|
||||
#include "events/ESubtreeMap.h"
|
||||
|
||||
|
@ -45,7 +45,7 @@
|
||||
|
||||
#include "InoTable.h"
|
||||
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
|
||||
#include "common/Timer.h"
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
||||
#include "include/types.h"
|
||||
#include "include/Context.h"
|
||||
#include "common/DecayCounter.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
#include "common/Mutex.h"
|
||||
#include "common/Cond.h"
|
||||
#include "common/Timer.h"
|
||||
|
@ -47,7 +47,7 @@
|
||||
|
||||
#include "include/filepath.h"
|
||||
#include "common/Timer.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include "common/safe_io.h"
|
||||
#include "FileJournal.h"
|
||||
#include "include/color.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
#include "os/ObjectStore.h"
|
||||
|
||||
#include <fcntl.h>
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "common/errno.h"
|
||||
#include "common/run_cmd.h"
|
||||
#include "common/safe_io.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
#include "common/sync_filesystem.h"
|
||||
|
||||
#define __STDC_FORMAT_MACROS
|
||||
|
@ -70,7 +70,7 @@
|
||||
#include "messages/MWatchNotify.h"
|
||||
|
||||
#include "common/DoutStreambuf.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
#include "common/Timer.h"
|
||||
#include "common/LogClient.h"
|
||||
#include "common/safe_io.h"
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include "PGLS.h"
|
||||
|
||||
#include "common/errno.h"
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
|
||||
#include "messages/MOSDOp.h"
|
||||
#include "messages/MOSDOpReply.h"
|
||||
|
@ -12,7 +12,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
#include "common/dout.h"
|
||||
#include "include/Context.h"
|
||||
#include "msg/Messenger.h"
|
||||
|
@ -12,7 +12,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "common/ProfLogger.h"
|
||||
#include "common/perf_counters.h"
|
||||
#include "common/admin_socket_client.h"
|
||||
#include "common/ceph_context.h"
|
||||
#include "common/config.h"
|
Loading…
Reference in New Issue
Block a user