gh-136793: Update the sampling rate in the documentation (#136829)

This commit is contained in:
Slavaqq 2025-07-19 17:00:46 +02:00 committed by GitHub
parent 6293d8a1a6
commit 1ba23244f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -82,7 +82,7 @@ running Python processes without requiring code modification or process restart.
Unlike deterministic profilers (:mod:`cProfile` and :mod:`profile`) that instrument
every function call, the sampling profiler periodically captures stack traces from
running processes. This approach provides virtually zero overhead while achieving
sampling rates of **up to 200,000 Hz**, making it the fastest sampling profiler
sampling rates of **up to 1,000,000 Hz**, making it the fastest sampling profiler
available for Python (at the time of its contribution) and ideal for debugging
performance issues in production environments.