Skip to content

Commit 2890d0c

Browse files
metrics: fix blocking_threads count (#6551)
1 parent 0a85a96 commit 2890d0c

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

tokio/src/runtime/scheduler/multi_thread/handle/metrics.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ impl Handle {
88
}
99

1010
pub(crate) fn num_blocking_threads(&self) -> usize {
11-
self.blocking_spawner.num_threads()
11+
// workers are currently spawned using spawn_blocking
12+
self.blocking_spawner
13+
.num_threads()
14+
.saturating_sub(self.num_workers())
1215
}
1316

1417
pub(crate) fn num_idle_blocking_threads(&self) -> usize {

tokio/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ impl Handle {
88
}
99

1010
pub(crate) fn num_blocking_threads(&self) -> usize {
11-
self.blocking_spawner.num_threads()
11+
// workers are currently spawned using spawn_blocking
12+
self.blocking_spawner
13+
.num_threads()
14+
.saturating_sub(self.num_workers())
1215
}
1316

1417
pub(crate) fn num_idle_blocking_threads(&self) -> usize {

tokio/tests/rt_metrics.rs

+5
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ fn num_blocking_threads() {
3131
assert_eq!(0, rt.metrics().num_blocking_threads());
3232
let _ = rt.block_on(rt.spawn_blocking(move || {}));
3333
assert_eq!(1, rt.metrics().num_blocking_threads());
34+
35+
let rt = threaded();
36+
assert_eq!(0, rt.metrics().num_blocking_threads());
37+
let _ = rt.block_on(rt.spawn_blocking(move || {}));
38+
assert_eq!(1, rt.metrics().num_blocking_threads());
3439
}
3540

3641
#[test]

0 commit comments

Comments
 (0)