diff options
Diffstat (limited to 'src/common/TrackedOp.cc')
-rw-r--r-- | src/common/TrackedOp.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/TrackedOp.cc b/src/common/TrackedOp.cc index a6467bcaaca..b888d933480 100644 --- a/src/common/TrackedOp.cc +++ b/src/common/TrackedOp.cc @@ -204,7 +204,7 @@ void OpHistory::dump_slow_ops(utime_t now, Formatter *f, set<string> filters) cleanup(now); f->open_object_section("OpHistory slow ops"); f->dump_int("num to keep", history_slow_op_size.load()); - f->dump_int("threshold to keep", history_slow_op_threshold.load()); + f->dump_float("threshold to keep", history_slow_op_threshold.load()); { f->open_array_section("Ops"); for ([[maybe_unused]] const auto& [t, op] : slow_op) { |