Closed
Description
The gctrace in https://blog.cloudflare.com/go-dont-collect-my-garbage/ shows CPU times of STW phases that are only a small multiple of the wall-clock time, even though GOMAXPROCS is 48. It should be min(ncpu, GOMAXPROCS) * wallTime
.
This also causes the overall GC CPU fraction reported in the gctrace to be much too low, since it's based on these CPU times.
/cc @RLH