From 74c8c4298c0e1213352c726d864f14149ec50d05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Geisend=C3=B6rfer?= Date: Thu, 15 Jul 2021 17:06:54 +0200 Subject: [PATCH] README: s/JDB/JBD/ Thanks Nick G. for spotting this! --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c1fbfbb..5c3ca74 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ I found that Go has a lot of profilers and there are many tools for looking at t - [runtime/pprof](https://golang.org/pkg/runtime/pprof/#Profile): Lists the available profiles and has a little more explanation about what kind of data they produce. - [runtime](https://golang.org/pkg/runtime/): Has documentation on the various control knobs and pprof facilities, e.g. `MemProfileRate`. - [net/http/pprof](https://golang.org/src/net/http/pprof/pprof.go): Not a lot of docs, but diving into the code from there shows how the various profilers can be started/stopped on demand. -- JDB +- JBD - [Profiler labels in Go](https://rakyll.org/profiler-labels/): An introduction to using pprof labels and how they allow you to add additional context to your profiles. - [Custom pprof profiles](https://rakyll.org/custom-profiles/): Example for using custom profiles, shows tracking open/close events of a blob store and how to figure out how many blobs are open at a given time. - [Mutex profile](https://rakyll.org/mutexprofile/): Brief intro to the mutex profile.