Last active
December 15, 2016 00:02
-
-
Save cep21/fd67a611f53ddecfc06554a3e78938ca to your computer and use it in GitHub Desktop.
Example of how to use a custom pprof profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
_ "net/http/pprof" | |
"os" | |
"runtime/pprof" | |
"sync/atomic" | |
"time" | |
) | |
var libProfile *pprof.Profile | |
func init() { | |
profName := "my_experiment_thing" | |
libProfile = pprof.Lookup(profName) | |
if libProfile == nil { | |
libProfile = pprof.NewProfile(profName) | |
} | |
} | |
type someResource struct { | |
*os.File | |
} | |
var fileIndex = int64(0) | |
func MustResource() *someResource { | |
f, err := os.Create(fmt.Sprintf("/tmp/%d.txt", atomic.AddInt64(&fileIndex, 1))) | |
if err != nil { | |
panic(err) | |
} | |
r := &someResource{f} | |
libProfile.Add(r, 1) | |
return r | |
} | |
func (r *someResource) Close() error { | |
libProfile.Remove(r) | |
return r.File.Close() | |
} | |
func trackAFunction() { | |
tracked := new(byte) | |
libProfile.Add(tracked, 1) | |
defer libProfile.Remove(tracked) | |
time.Sleep(time.Second) | |
} | |
func usesAResource() { | |
res := MustResource() | |
defer res.Close() | |
for i := 0; i < 10; i++ { | |
time.Sleep(time.Second) | |
} | |
} | |
func main() { | |
http.HandleFunc("/nonblock", func(rw http.ResponseWriter, req *http.Request) { | |
go usesAResource() | |
}) | |
http.HandleFunc("/functiontrack", func(rw http.ResponseWriter, req *http.Request) { | |
trackAFunction() | |
}) | |
http.HandleFunc("/block", func(rw http.ResponseWriter, req *http.Request) { | |
usesAResource() | |
}) | |
log.Println("Running!") | |
log.Println(http.ListenAndServe("localhost:6060", nil)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment