Skip to content

Commit 749076a

Browse files
author
wangwenjuan
committed
Bluestore: fix bluestore collection_list latency perf counter
Fixed bug in BlueStore::_collection_list using l_bluestore_remove_lat as bluestore list delay time, which should be l_bluestore_clist_lat. Fixes: https://tracker.ceph.com/issues/61460 Signed-off-by: Wangwenjuan <[email protected]>
1 parent 0c756c7 commit 749076a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/os/bluestore/BlueStore.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11803,7 +11803,7 @@ int BlueStore::_collection_list(
1180311803
[&, start_time = mono_clock::now(), func_name = __func__] {
1180411804
log_latency_fn(
1180511805
func_name,
11806-
l_bluestore_remove_lat,
11806+
l_bluestore_clist_lat,
1180711807
mono_clock::now() - start_time,
1180811808
cct->_conf->bluestore_log_collection_list_age,
1180911809
[&](const ceph::timespan& lat) {

0 commit comments

Comments
 (0)