2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2014-07-04 01:28:03 +02:00
|
|
|
//
|
|
|
|
#pragma once
|
2017-04-06 04:02:00 +02:00
|
|
|
#include "monitoring/perf_step_timer.h"
|
2014-07-04 01:28:03 +02:00
|
|
|
#include "rocksdb/iostats_context.h"
|
|
|
|
|
2021-04-13 16:55:58 +02:00
|
|
|
#if defined(ROCKSDB_SUPPORT_THREAD_LOCAL) && !defined(NIOSTATS_CONTEXT)
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2017-09-16 02:02:37 +02:00
|
|
|
extern __thread IOStatsContext iostats_context;
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|
2014-08-28 18:46:05 +02:00
|
|
|
|
2014-07-04 01:28:03 +02:00
|
|
|
// increment a specific counter by the specified value
|
2017-09-16 02:02:37 +02:00
|
|
|
#define IOSTATS_ADD(metric, value) (iostats_context.metric += value)
|
2014-07-04 01:28:03 +02:00
|
|
|
|
|
|
|
// reset a specific counter to zero
|
2017-09-16 02:02:37 +02:00
|
|
|
#define IOSTATS_RESET(metric) (iostats_context.metric = 0)
|
2014-07-04 01:28:03 +02:00
|
|
|
|
|
|
|
// reset all counters to zero
|
2017-09-16 02:02:37 +02:00
|
|
|
#define IOSTATS_RESET_ALL() (iostats_context.Reset())
|
2014-07-04 01:28:03 +02:00
|
|
|
|
2017-09-16 02:02:37 +02:00
|
|
|
#define IOSTATS_SET_THREAD_POOL_ID(value) \
|
|
|
|
(iostats_context.thread_pool_id = value)
|
2014-07-04 01:28:03 +02:00
|
|
|
|
2017-09-16 02:02:37 +02:00
|
|
|
#define IOSTATS_THREAD_POOL_ID() (iostats_context.thread_pool_id)
|
2014-07-04 01:28:03 +02:00
|
|
|
|
2017-09-16 02:02:37 +02:00
|
|
|
#define IOSTATS(metric) (iostats_context.metric)
|
2014-08-28 18:46:05 +02:00
|
|
|
|
2015-06-02 11:07:58 +02:00
|
|
|
// Declare and set start time of the timer
|
2017-09-16 02:02:37 +02:00
|
|
|
#define IOSTATS_TIMER_GUARD(metric) \
|
|
|
|
PerfStepTimer iostats_step_timer_##metric(&(iostats_context.metric)); \
|
2017-06-03 02:12:39 +02:00
|
|
|
iostats_step_timer_##metric.Start();
|
2015-06-02 11:07:58 +02:00
|
|
|
|
2019-01-30 01:23:21 +01:00
|
|
|
// Declare and set start time of the timer
|
2021-01-26 07:07:26 +01:00
|
|
|
#define IOSTATS_CPU_TIMER_GUARD(metric, clock) \
|
2019-01-30 01:23:21 +01:00
|
|
|
PerfStepTimer iostats_step_timer_##metric( \
|
2021-03-15 12:32:24 +01:00
|
|
|
&(iostats_context.metric), clock, true, \
|
2019-01-30 01:23:21 +01:00
|
|
|
PerfLevel::kEnableTimeAndCPUTimeExceptForMutex); \
|
|
|
|
iostats_step_timer_##metric.Start();
|
|
|
|
|
2021-04-13 16:55:58 +02:00
|
|
|
#else // ROCKSDB_SUPPORT_THREAD_LOCAL && !NIOSTATS_CONTEXT
|
2014-08-28 18:46:05 +02:00
|
|
|
|
|
|
|
#define IOSTATS_ADD(metric, value)
|
|
|
|
#define IOSTATS_ADD_IF_POSITIVE(metric, value)
|
|
|
|
#define IOSTATS_RESET(metric)
|
|
|
|
#define IOSTATS_RESET_ALL()
|
|
|
|
#define IOSTATS_SET_THREAD_POOL_ID(value)
|
|
|
|
#define IOSTATS_THREAD_POOL_ID()
|
|
|
|
#define IOSTATS(metric) 0
|
|
|
|
|
2015-06-02 11:07:58 +02:00
|
|
|
#define IOSTATS_TIMER_GUARD(metric)
|
2021-01-26 07:07:26 +01:00
|
|
|
#define IOSTATS_CPU_TIMER_GUARD(metric, clock) static_cast<void>(clock)
|
2015-06-02 11:07:58 +02:00
|
|
|
|
2021-04-13 16:55:58 +02:00
|
|
|
#endif // ROCKSDB_SUPPORT_THREAD_LOCAL && !NIOSTATS_CONTEXT
|