diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
commit | 19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch) | |
tree | 42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/rgw/rgw_perf_counters.h | |
parent | Initial commit. (diff) | |
download | ceph-6d07fdb6bb33b1af39833b850bb6cf8af79fe293.tar.xz ceph-6d07fdb6bb33b1af39833b850bb6cf8af79fe293.zip |
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/rgw/rgw_perf_counters.h')
-rw-r--r-- | src/rgw/rgw_perf_counters.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/rgw/rgw_perf_counters.h b/src/rgw/rgw_perf_counters.h new file mode 100644 index 000000000..a3c10d9a9 --- /dev/null +++ b/src/rgw/rgw_perf_counters.h @@ -0,0 +1,55 @@ +// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- +// vim: ts=8 sw=2 smarttab ft=cpp + +#pragma once +#include "include/common_fwd.h" + +extern PerfCounters *perfcounter; + +extern int rgw_perf_start(CephContext *cct); +extern void rgw_perf_stop(CephContext *cct); + +enum { + l_rgw_first = 15000, + l_rgw_req, + l_rgw_failed_req, + + l_rgw_get, + l_rgw_get_b, + l_rgw_get_lat, + + l_rgw_put, + l_rgw_put_b, + l_rgw_put_lat, + + l_rgw_qlen, + l_rgw_qactive, + + l_rgw_cache_hit, + l_rgw_cache_miss, + + l_rgw_keystone_token_cache_hit, + l_rgw_keystone_token_cache_miss, + + l_rgw_gc_retire, + + l_rgw_lc_expire_current, + l_rgw_lc_expire_noncurrent, + l_rgw_lc_expire_dm, + l_rgw_lc_transition_current, + l_rgw_lc_transition_noncurrent, + l_rgw_lc_abort_mpu, + + l_rgw_pubsub_event_triggered, + l_rgw_pubsub_event_lost, + l_rgw_pubsub_store_ok, + l_rgw_pubsub_store_fail, + l_rgw_pubsub_events, + l_rgw_pubsub_push_ok, + l_rgw_pubsub_push_failed, + l_rgw_pubsub_push_pending, + l_rgw_pubsub_missing_conf, + + l_rgw_last, +}; + |