From 504c7e7621ece2b589be56c838117d86ca65cde2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Geisend=C3=B6rfer?= Date: Fri, 21 Jan 2022 10:56:48 +0100 Subject: [PATCH] guide: add mutex link, bump safe rate --- guide/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/README.md b/guide/README.md index a87e1cd..32845c1 100644 --- a/guide/README.md +++ b/guide/README.md @@ -133,10 +133,10 @@ As with the previous mental model in this guide, everything above is an extremel Here is an overview of the profilers built into the Go runtime. For more details following the links. -| | [CPU](#cpu-profiler) | [Memory](#memory-profiler) | [Block](#block-profiler) | Mutex | Goroutine | [ThreadCreate](#threadcreate-profiler) | +| | [CPU](#cpu-profiler) | [Memory](#memory-profiler) | [Block](#block-profiler) | [Mutex](#mutex-profiler) | Goroutine | [ThreadCreate](#threadcreate-profiler) | |-|-|-|-|-|-|-| |Production Safety|✅|✅|✅|✅|⚠️ (1.)|🐞 (2.)| -|Safe Rate|default|default|`10000`|`10`|`1000` goroutines|-| +|Safe Rate|default|default|`10000`|`100`|`1000` goroutines|-| |Accuracy|⭐️⭐|⭐⭐⭐|⭐⭐⭐|⭐⭐⭐|⭐⭐⭐|-| |Max Stack Depth|`64`|`32`|`32`|`32`|`32` - `100` (3.)|-| |Profiler Labels|✅|❌|❌|❌|✅|-|