1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
package main
import (
"fmt"
"log"
"net/http"
"time"
_ "net/http/pprof"
"github.com/felixge/fgprof"
)
const (
sleepTime = 10 * time.Millisecond
cpuTime = 30 * time.Millisecond
networkTime = 60 * time.Millisecond
)
// sleepURL is the url for the sleep server used by slowNetworkRequest. It's
// a global variable to keep the cute simplicitly of main's loop.
var sleepURL string
func main() {
// Run http endpoints for both pprof and fgprof.
http.DefaultServeMux.Handle("/debug/fgprof", fgprof.Handler())
go func() {
addr := "localhost:6060"
log.Printf("Listening on %s", addr)
log.Println(http.ListenAndServe(addr, nil))
}()
// Start a sleep server to help with simulating slow network requests.
var stop func()
sleepURL, stop = StartSleepServer()
defer stop()
for {
// Http request to a web service that might be slow.
slowNetworkRequest()
// Some heavy CPU computation.
cpuIntensiveTask()
// Poorly named function that you don't understand yet.
weirdFunction()
}
}
func slowNetworkRequest() {
res, err := http.Get(sleepURL + "/?sleep=" + networkTime.String())
if err != nil {
panic(err)
}
defer res.Body.Close()
if res.StatusCode != 200 {
panic(fmt.Sprintf("bad code: %d", res.StatusCode))
}
}
func cpuIntensiveTask() {
start := time.Now()
for time.Since(start) <= cpuTime {
// Spend some time in a hot loop to be a little more realistic than
// spending all time in time.Since().
for i := 0; i < 1000; i++ {
_ = i
}
}
}
func weirdFunction() {
time.Sleep(sleepTime)
}
|