diff --git a/tokio/src/runtime/metrics/runtime.rs b/tokio/src/runtime/metrics/runtime.rs index 6302457b8d5..4638dc3b1db 100644 --- a/tokio/src/runtime/metrics/runtime.rs +++ b/tokio/src/runtime/metrics/runtime.rs @@ -54,6 +54,10 @@ impl RuntimeMetrics { /// This counter increases when a task is spawned and decreases when a /// task exits. /// + /// Note: When using the multi-threaded runtime this number may not + /// not have strong consistency i.e. no tasks may be running but the metric + /// reports otherwise. + /// /// # Examples /// /// ```