From c06beb9eff441271bedf34ea9777a92db8018f9d Mon Sep 17 00:00:00 2001 From: Michael Anthony Knyszek Date: Fri, 10 Nov 2023 22:46:47 +0000 Subject: [PATCH] internal/trace/v2: resolve syscall parsing ambiguity After landing the new execution tracer, the Windows builders failed with some new errors. Currently the GoSyscallBegin event has no indicator that its the target of a ProcSteal event. This can lead to an ambiguous situation that is unresolvable if timestamps are broken. For instance, if the tracer sees the ProcSteal event while a goroutine has been observed to be in a syscall (one that, for instance, did not actually lose its P), it will proceed with the ProcSteal incorrectly. This is a little abstract. For a more concrete example, see the go122-syscall-steal-proc-ambiguous test. This change resolves this ambiguity by interleaving GoSyscallBegin events into how Ps are sequenced. Because a ProcSteal has a sequence number (it has to, it's stopping a P from a distance) it necessarily has to synchronize with a precise ProcStart event. This change basically just extends this synchronization to GoSyscallBegin, so the ProcSteal can't advance until _exactly the right_ syscall has been entered. This change removes the test skip, since it and CL 541695 fix the two main issues observed on Windows platforms. For #60773. Fixes #64061. Change-Id: I069389cd7fe1ea903edf42d79912f6e2bcc23f62 Reviewed-on: https://go-review.googlesource.com/c/go/+/541696 Auto-Submit: Michael Knyszek Reviewed-by: Michael Pratt LUCI-TryBot-Result: Go LUCI --- src/internal/trace/goroutinesv2_test.go | 5 +- src/internal/trace/v2/event/go122/event.go | 6 +- .../trace/v2/internal/testgen/go122/trace.go | 32 +- src/internal/trace/v2/order.go | 47 +- .../go122-syscall-steal-proc-ambiguous.go | 46 + ...ll-steal-proc-reacquire-new-proc-bare-m.go | 4 +- ...2-syscall-steal-proc-reacquire-new-proc.go | 4 +- .../go122-syscall-steal-proc-simple-bare-m.go | 4 +- .../go122-syscall-steal-proc-simple.go | 4 +- .../v2/testdata/tests/go122-annotations.test | 294 +- .../v2/testdata/tests/go122-gc-stress.test | 6369 +++++++++++------ .../go122-syscall-steal-proc-ambiguous.test | 21 + ...-steal-proc-reacquire-new-proc-bare-m.test | 6 +- ...syscall-steal-proc-reacquire-new-proc.test | 6 +- ...o122-syscall-steal-proc-simple-bare-m.test | 6 +- .../go122-syscall-steal-proc-simple.test | 6 +- src/internal/trace/v2/trace_test.go | 4 - src/runtime/trace2event.go | 2 +- src/runtime/trace2runtime.go | 5 +- 19 files changed, 4373 insertions(+), 2498 deletions(-) create mode 100644 src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-ambiguous.go create mode 100644 src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-ambiguous.test diff --git a/src/internal/trace/goroutinesv2_test.go b/src/internal/trace/goroutinesv2_test.go index 5ab3726137..99ec8dd8b0 100644 --- a/src/internal/trace/goroutinesv2_test.go +++ b/src/internal/trace/goroutinesv2_test.go @@ -211,8 +211,9 @@ func TestRelatedGoroutinesV2Trace(t *testing.T) { } want := map[tracev2.GoID]struct{}{ tracev2.GoID(86): struct{}{}, // N.B. Result includes target. - tracev2.GoID(85): struct{}{}, - tracev2.GoID(111): struct{}{}, + tracev2.GoID(71): struct{}{}, + tracev2.GoID(25): struct{}{}, + tracev2.GoID(122): struct{}{}, } for goid := range got { if _, ok := want[goid]; ok { diff --git a/src/internal/trace/v2/event/go122/event.go b/src/internal/trace/v2/event/go122/event.go index 8a106c8692..be7ce4c806 100644 --- a/src/internal/trace/v2/event/go122/event.go +++ b/src/internal/trace/v2/event/go122/event.go @@ -38,7 +38,7 @@ const ( EvGoStop // goroutine yields its time, but is runnable [timestamp, reason, stack ID] EvGoBlock // goroutine blocks [timestamp, reason, stack ID] EvGoUnblock // goroutine is unblocked [timestamp, goroutine ID, goroutine seq, stack ID] - EvGoSyscallBegin // syscall enter [timestamp, stack ID] + EvGoSyscallBegin // syscall enter [timestamp, P seq, stack ID] EvGoSyscallEnd // syscall exit [timestamp] EvGoSyscallEndBlocked // syscall exit and it blocked at some point [timestamp] EvGoStatus // goroutine status at the start of a generation [timestamp, goroutine ID, status] @@ -193,9 +193,9 @@ var specs = [...]event.Spec{ }, EvGoSyscallBegin: event.Spec{ Name: "GoSyscallBegin", - Args: []string{"dt", "stack"}, + Args: []string{"dt", "p_seq", "stack"}, IsTimedEvent: true, - StackIDs: []int{1}, + StackIDs: []int{2}, }, EvGoSyscallEnd: event.Spec{ Name: "GoSyscallEnd", diff --git a/src/internal/trace/v2/internal/testgen/go122/trace.go b/src/internal/trace/v2/internal/testgen/go122/trace.go index f9125640fa..42bb403482 100644 --- a/src/internal/trace/v2/internal/testgen/go122/trace.go +++ b/src/internal/trace/v2/internal/testgen/go122/trace.go @@ -50,11 +50,12 @@ func Main(f func(*Trace)) { // Otherwise, it performs no validation on the trace at all. type Trace struct { // Trace data state. - ver version.Version - names map[string]event.Type - specs []event.Spec - events []raw.Event - gens []*Generation + ver version.Version + names map[string]event.Type + specs []event.Spec + events []raw.Event + gens []*Generation + validTimestamps bool // Expectation state. bad bool @@ -65,8 +66,9 @@ type Trace struct { func NewTrace() *Trace { ver := version.Go122 return &Trace{ - names: event.Names(ver.Specs()), - specs: ver.Specs(), + names: event.Names(ver.Specs()), + specs: ver.Specs(), + validTimestamps: true, } } @@ -89,6 +91,13 @@ func (t *Trace) RawEvent(typ event.Type, data []byte, args ...uint64) { t.events = append(t.events, t.createEvent(typ, data, args...)) } +// DisableTimestamps makes the timestamps for all events generated after +// this call zero. Raw events are exempted from this because the caller +// has to pass their own timestamp into those events anyway. +func (t *Trace) DisableTimestamps() { + t.validTimestamps = false +} + // Generation creates a new trace generation. // // This provides more structure than Event to allow for more easily @@ -180,6 +189,9 @@ type Generation struct { // // This is convenience function for generating correct batches. func (g *Generation) Batch(thread trace.ThreadID, time Time) *Batch { + if !g.trace.validTimestamps { + time = 0 + } b := &Batch{ gen: g, thread: thread, @@ -297,7 +309,11 @@ func (b *Batch) Event(name string, args ...any) { var uintArgs []uint64 argOff := 0 if b.gen.trace.specs[ev].IsTimedEvent { - uintArgs = []uint64{1} + if b.gen.trace.validTimestamps { + uintArgs = []uint64{1} + } else { + uintArgs = []uint64{0} + } argOff = 1 } spec := b.gen.trace.specs[ev] diff --git a/src/internal/trace/v2/order.go b/src/internal/trace/v2/order.go index 728879257f..8b503d4dc4 100644 --- a/src/internal/trace/v2/order.go +++ b/src/internal/trace/v2/order.go @@ -306,7 +306,7 @@ func (o *ordering) advance(ev *baseEvent, evt *evTable, m ThreadID, gen uint64) } o.gStates[newgid] = &gState{id: newgid, status: go122.GoRunnable, seq: makeSeq(gen, 0)} return curCtx, true, nil - case go122.EvGoDestroy, go122.EvGoStop, go122.EvGoBlock, go122.EvGoSyscallBegin: + case go122.EvGoDestroy, go122.EvGoStop, go122.EvGoBlock: // These are goroutine events that all require an active running // goroutine on some thread. They must *always* be advance-able, // since running goroutines are bound to their M. @@ -335,14 +335,6 @@ func (o *ordering) advance(ev *baseEvent, evt *evTable, m ThreadID, gen uint64) // Goroutine blocked. It's waiting now and not running on this M. state.status = go122.GoWaiting newCtx.G = NoGoroutine - case go122.EvGoSyscallBegin: - // Goroutine entered a syscall. It's still running on this P and M. - state.status = go122.GoSyscall - pState, ok := o.pStates[curCtx.P] - if !ok { - return curCtx, false, fmt.Errorf("uninitialized proc %d found during %s", curCtx.P, go122.EventString(typ)) - } - pState.status = go122.ProcSyscall } return curCtx, true, nil case go122.EvGoStart: @@ -380,6 +372,43 @@ func (o *ordering) advance(ev *baseEvent, evt *evTable, m ThreadID, gen uint64) // N.B. No context to validate. Basically anything can unblock // a goroutine (e.g. sysmon). return curCtx, true, nil + case go122.EvGoSyscallBegin: + // Entering a syscall requires an active running goroutine with a + // proc on some thread. It is always advancable. + if err := validateCtx(curCtx, event.UserGoReqs); err != nil { + return curCtx, false, err + } + state, ok := o.gStates[curCtx.G] + if !ok { + return curCtx, false, fmt.Errorf("event %s for goroutine (%v) that doesn't exist", go122.EventString(typ), curCtx.G) + } + if state.status != go122.GoRunning { + return curCtx, false, fmt.Errorf("%s event for goroutine that's not %s", go122.EventString(typ), GoRunning) + } + // Goroutine entered a syscall. It's still running on this P and M. + state.status = go122.GoSyscall + pState, ok := o.pStates[curCtx.P] + if !ok { + return curCtx, false, fmt.Errorf("uninitialized proc %d found during %s", curCtx.P, go122.EventString(typ)) + } + pState.status = go122.ProcSyscall + // Validate the P sequence number on the event and advance it. + // + // We have a P sequence number for what is supposed to be a goroutine event + // so that we can correctly model P stealing. Without this sequence number here, + // the syscall from which a ProcSteal event is stealing can be ambiguous in the + // face of broken timestamps. See the go122-syscall-steal-proc-ambiguous test for + // more details. + // + // Note that because this sequence number only exists as a tool for disambiguation, + // we can enforce that we have the right sequence number at this point; we don't need + // to back off and see if any other events will advance. This is a running P. + pSeq := makeSeq(gen, ev.args[0]) + if !pSeq.succeeds(pState.seq) { + return curCtx, false, fmt.Errorf("failed to advance %s: can't make sequence: %s -> %s", go122.EventString(typ), pState.seq, pSeq) + } + pState.seq = pSeq + return curCtx, true, nil case go122.EvGoSyscallEnd: // This event is always advance-able because it happens on the same // thread that EvGoSyscallStart happened, and the goroutine can't leave diff --git a/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-ambiguous.go b/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-ambiguous.go new file mode 100644 index 0000000000..349a575ef3 --- /dev/null +++ b/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-ambiguous.go @@ -0,0 +1,46 @@ +// Copyright 2023 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Tests syscall P stealing. +// +// Specifically, it tests a scenerio wherein, without a +// P sequence number of GoSyscallBegin, the syscall that +// a ProcSteal applies to is ambiguous. This only happens in +// practice when the events aren't already properly ordered +// by timestamp, since the ProcSteal won't be seen until after +// the correct GoSyscallBegin appears on the frontier. + +package main + +import ( + "internal/trace/v2" + "internal/trace/v2/event/go122" + testgen "internal/trace/v2/internal/testgen/go122" +) + +func main() { + testgen.Main(gen) +} + +func gen(t *testgen.Trace) { + t.DisableTimestamps() + + g := t.Generation(1) + + // One goroutine does a syscall without blocking, then another one where + // it's P gets stolen. + b0 := g.Batch(trace.ThreadID(0), 0) + b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning) + b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning) + b0.Event("GoSyscallBegin", testgen.Seq(1), testgen.NoStack) + b0.Event("GoSyscallEnd") + b0.Event("GoSyscallBegin", testgen.Seq(2), testgen.NoStack) + b0.Event("GoSyscallEndBlocked") + + // A running goroutine steals proc 0. + b1 := g.Batch(trace.ThreadID(1), 0) + b1.Event("ProcStatus", trace.ProcID(2), go122.ProcRunning) + b1.Event("GoStatus", trace.GoID(2), trace.ThreadID(1), go122.GoRunning) + b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(3), trace.ThreadID(0)) +} diff --git a/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc-bare-m.go b/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc-bare-m.go index 95a549c340..24e5cb2a3e 100644 --- a/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc-bare-m.go +++ b/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc-bare-m.go @@ -24,11 +24,11 @@ func gen(t *testgen.Trace) { b0.Event("ProcStatus", trace.ProcID(1), go122.ProcIdle) b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning) b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning) - b0.Event("GoSyscallBegin", testgen.NoStack) + b0.Event("GoSyscallBegin", testgen.Seq(1), testgen.NoStack) b0.Event("ProcStart", trace.ProcID(1), testgen.Seq(1)) b0.Event("GoSyscallEndBlocked") // A bare M steals the goroutine's P. b1 := g.Batch(trace.ThreadID(1), 0) - b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(1), trace.ThreadID(0)) + b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(2), trace.ThreadID(0)) } diff --git a/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc.go b/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc.go index 774c04d35a..2caefe8be5 100644 --- a/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc.go +++ b/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc.go @@ -24,7 +24,7 @@ func gen(t *testgen.Trace) { b0.Event("ProcStatus", trace.ProcID(1), go122.ProcIdle) b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning) b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning) - b0.Event("GoSyscallBegin", testgen.NoStack) + b0.Event("GoSyscallBegin", testgen.Seq(1), testgen.NoStack) b0.Event("ProcStart", trace.ProcID(1), testgen.Seq(1)) b0.Event("GoSyscallEndBlocked") @@ -32,5 +32,5 @@ func gen(t *testgen.Trace) { b1 := g.Batch(trace.ThreadID(1), 0) b1.Event("ProcStatus", trace.ProcID(2), go122.ProcRunning) b1.Event("GoStatus", trace.GoID(2), trace.ThreadID(1), go122.GoRunning) - b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(1), trace.ThreadID(0)) + b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(2), trace.ThreadID(0)) } diff --git a/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-simple-bare-m.go b/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-simple-bare-m.go index c463acbed4..630eba8cf2 100644 --- a/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-simple-bare-m.go +++ b/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-simple-bare-m.go @@ -23,10 +23,10 @@ func gen(t *testgen.Trace) { b0 := g.Batch(trace.ThreadID(0), 0) b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning) b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning) - b0.Event("GoSyscallBegin", testgen.NoStack) + b0.Event("GoSyscallBegin", testgen.Seq(1), testgen.NoStack) b0.Event("GoSyscallEndBlocked") // A bare M steals the goroutine's P. b1 := g.Batch(trace.ThreadID(1), 0) - b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(1), trace.ThreadID(0)) + b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(2), trace.ThreadID(0)) } diff --git a/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-simple.go b/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-simple.go index 1b5178173e..54b43f4f0b 100644 --- a/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-simple.go +++ b/src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-simple.go @@ -23,12 +23,12 @@ func gen(t *testgen.Trace) { b0 := g.Batch(trace.ThreadID(0), 0) b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning) b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning) - b0.Event("GoSyscallBegin", testgen.NoStack) + b0.Event("GoSyscallBegin", testgen.Seq(1), testgen.NoStack) b0.Event("GoSyscallEndBlocked") // A running goroutine steals proc 0. b1 := g.Batch(trace.ThreadID(1), 0) b1.Event("ProcStatus", trace.ProcID(2), go122.ProcRunning) b1.Event("GoStatus", trace.GoID(2), trace.ThreadID(1), go122.GoRunning) - b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(1), trace.ThreadID(0)) + b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(2), trace.ThreadID(0)) } diff --git a/src/internal/trace/v2/testdata/tests/go122-annotations.test b/src/internal/trace/v2/testdata/tests/go122-annotations.test index ab4b92352d..4749d82004 100644 --- a/src/internal/trace/v2/testdata/tests/go122-annotations.test +++ b/src/internal/trace/v2/testdata/tests/go122-annotations.test @@ -2,30 +2,28 @@ SUCCESS -- trace -- Trace Go1.22 -EventBatch gen=1 m=18446744073709551615 time=23991883811065 size=5 +EventBatch gen=1 m=18446744073709551615 time=28113086279559 size=5 Frequency freq=15625000 -EventBatch gen=1 m=1331278 time=23991883808413 size=16 -ProcStart dt=297 p=2 p_seq=1 -GoStart dt=162 g=7 g_seq=1 -HeapAlloc dt=267 heapalloc_value=1908736 -EventBatch gen=1 m=1331277 time=23991883807353 size=28 -ProcStart dt=472 p=1 p_seq=1 -GoStart dt=309 g=6 g_seq=1 -HeapAlloc dt=533 heapalloc_value=1892352 -HeapAlloc dt=47 heapalloc_value=1900544 -GoBlock dt=2071 reason_string=12 stack=23 -ProcStop dt=54 -EventBatch gen=1 m=1331276 time=23991883809162 size=10 -ProcStart dt=426 p=3 p_seq=1 -HeapAlloc dt=108 heapalloc_value=1916928 -EventBatch gen=1 m=1331274 time=23991883805418 size=325 -ProcStatus dt=241 p=0 pstatus=1 -GoStatus dt=5 g=1 m=1331274 gstatus=2 -ProcsChange dt=486 procs_value=48 stack=1 -STWBegin dt=80 kind_string=21 stack=2 -HeapGoal dt=3 heapgoal_value=4194304 -ProcStatus dt=3 p=1 pstatus=2 -ProcStatus dt=2 p=2 pstatus=2 +EventBatch gen=1 m=167930 time=28113086277797 size=41 +ProcStart dt=505 p=1 p_seq=1 +GoStart dt=303 g=7 g_seq=1 +HeapAlloc dt=646 heapalloc_value=1892352 +HeapAlloc dt=149 heapalloc_value=1900544 +GoBlock dt=146 reason_string=12 stack=24 +GoStart dt=14 g=6 g_seq=1 +HeapAlloc dt=16 heapalloc_value=1908736 +GoBlock dt=347 reason_string=12 stack=25 +EventBatch gen=1 m=167928 time=28113086279032 size=10 +ProcStart dt=451 p=2 p_seq=1 +GoStart dt=188 g=8 g_seq=1 +EventBatch gen=1 m=167926 time=28113086275999 size=324 +ProcStatus dt=295 p=0 pstatus=1 +GoStatus dt=5 g=1 m=167926 gstatus=2 +ProcsChange dt=405 procs_value=48 stack=1 +STWBegin dt=65 kind_string=21 stack=2 +HeapGoal dt=2 heapgoal_value=4194304 +ProcStatus dt=4 p=1 pstatus=2 +ProcStatus dt=1 p=2 pstatus=2 ProcStatus dt=1 p=3 pstatus=2 ProcStatus dt=1 p=4 pstatus=2 ProcStatus dt=1 p=5 pstatus=2 @@ -71,113 +69,117 @@ ProcStatus dt=1 p=44 pstatus=2 ProcStatus dt=1 p=45 pstatus=2 ProcStatus dt=1 p=46 pstatus=2 ProcStatus dt=1 p=47 pstatus=2 -ProcsChange dt=9 procs_value=48 stack=3 -STWEnd dt=209 -GoCreate dt=376 new_g=6 new_stack=4 stack=5 -GoCreate dt=96 new_g=7 new_stack=6 stack=7 -GoCreate dt=574 new_g=8 new_stack=8 stack=9 -UserTaskBegin dt=19 task=1 parent_task=0 name_string=22 stack=10 -UserRegionBegin dt=19 task=1 name_string=23 stack=11 -HeapAlloc dt=27 heapalloc_value=1884160 -GoCreate dt=578 new_g=9 new_stack=12 stack=13 -GoBlock dt=67 reason_string=10 stack=14 -GoStart dt=13 g=9 g_seq=1 -UserRegionBegin dt=61 task=1 name_string=24 stack=15 -UserRegionBegin dt=8 task=1 name_string=25 stack=16 +ProcsChange dt=1 procs_value=48 stack=3 +STWEnd dt=184 +GoCreate dt=252 new_g=6 new_stack=4 stack=5 +GoCreate dt=78 new_g=7 new_stack=6 stack=7 +GoCreate dt=73 new_g=8 new_stack=8 stack=9 +UserTaskBegin dt=71 task=1 parent_task=0 name_string=22 stack=10 +UserRegionBegin dt=535 task=1 name_string=23 stack=11 +HeapAlloc dt=26 heapalloc_value=1884160 +GoCreate dt=8 new_g=9 new_stack=12 stack=13 +GoBlock dt=249 reason_string=10 stack=14 +GoStart dt=8 g=9 g_seq=1 +UserRegionBegin dt=286 task=1 name_string=24 stack=15 +UserRegionBegin dt=244 task=1 name_string=25 stack=16 UserRegionBegin dt=6 task=1 name_string=26 stack=17 -UserLog dt=780 task=1 key_string=27 value_string=28 stack=18 -UserRegionEnd dt=9 task=1 name_string=26 stack=19 -UserRegionEnd dt=504 task=1 name_string=25 stack=20 -UserTaskEnd dt=425 task=1 stack=21 -GoUnblock dt=503 g=1 g_seq=1 stack=22 -GoDestroy dt=7 -GoStart dt=13 g=1 g_seq=2 -UserRegionBegin dt=367 task=0 name_string=29 stack=24 -EventBatch gen=1 m=18446744073709551615 time=23991883811600 size=57 -GoStatus dt=358 g=2 m=18446744073709551615 gstatus=4 +UserLog dt=6 task=1 key_string=27 value_string=28 stack=18 +UserRegionEnd dt=4 task=1 name_string=26 stack=19 +UserRegionEnd dt=315 task=1 name_string=25 stack=20 +UserTaskEnd dt=5 task=1 stack=21 +GoUnblock dt=11 g=1 g_seq=1 stack=22 +GoDestroy dt=6 +GoStart dt=10 g=1 g_seq=2 +UserRegionBegin dt=278 task=0 name_string=29 stack=23 +EventBatch gen=1 m=18446744073709551615 time=28113086280061 size=57 +GoStatus dt=318 g=2 m=18446744073709551615 gstatus=4 GoStatus dt=3 g=3 m=18446744073709551615 gstatus=4 -GoStatus dt=2 g=4 m=18446744073709551615 gstatus=4 +GoStatus dt=1 g=4 m=18446744073709551615 gstatus=4 GoStatus dt=1 g=5 m=18446744073709551615 gstatus=4 -EventBatch gen=1 m=18446744073709551615 time=23991883812197 size=461 +EventBatch gen=1 m=18446744073709551615 time=28113086280852 size=488 Stacks +Stack id=17 nframes=3 + pc=4816080 func=30 file=31 line=45 + pc=4813660 func=32 file=33 line=141 + pc=4815908 func=34 file=31 line=43 Stack id=8 nframes=1 - pc=4812576 func=30 file=31 line=128 -Stack id=13 nframes=1 - pc=4813540 func=32 file=33 line=37 -Stack id=3 nframes=4 - pc=4421156 func=34 file=35 line=1360 - pc=4537289 func=36 file=37 line=246 - pc=4812325 func=38 file=31 line=125 - pc=4813276 func=32 file=33 line=27 -Stack id=2 nframes=3 - pc=4537037 func=36 file=37 line=229 - pc=4812325 func=38 file=31 line=125 - pc=4813276 func=32 file=33 line=27 -Stack id=16 nframes=1 - pc=4813956 func=39 file=33 line=43 -Stack id=19 nframes=3 - pc=4814128 func=40 file=33 line=45 - pc=4811708 func=41 file=42 line=141 - pc=4813956 func=39 file=33 line=43 -Stack id=10 nframes=1 - pc=4813380 func=32 file=33 line=33 -Stack id=1 nframes=4 - pc=4551915 func=43 file=44 line=248 - pc=4537017 func=36 file=37 line=228 - pc=4812325 func=38 file=31 line=125 - pc=4813276 func=32 file=33 line=27 + pc=4814528 func=35 file=36 line=128 +Stack id=9 nframes=2 + pc=4814351 func=37 file=36 line=128 + pc=4815228 func=38 file=31 line=27 +Stack id=24 nframes=3 + pc=4217457 func=39 file=40 line=442 + pc=4544973 func=41 file=42 line=918 + pc=4544806 func=43 file=42 line=871 Stack id=7 nframes=4 - pc=4543253 func=45 file=37 line=831 - pc=4537306 func=36 file=37 line=249 - pc=4812325 func=38 file=31 line=125 - pc=4813276 func=32 file=33 line=27 + pc=4544740 func=44 file=42 line=868 + pc=4538792 func=45 file=42 line=258 + pc=4814277 func=37 file=36 line=125 + pc=4815228 func=38 file=31 line=27 +Stack id=22 nframes=3 + pc=4642148 func=46 file=47 line=81 + pc=4816326 func=48 file=47 line=87 + pc=4815941 func=34 file=31 line=50 Stack id=11 nframes=1 - pc=4813412 func=32 file=33 line=34 -Stack id=4 nframes=1 - pc=4545952 func=46 file=47 line=42 + pc=4815364 func=38 file=31 line=34 Stack id=5 nframes=4 - pc=4545861 func=48 file=47 line=42 - pc=4537294 func=36 file=37 line=248 - pc=4812325 func=38 file=31 line=125 - pc=4813276 func=32 file=33 line=27 -Stack id=17 nframes=3 - pc=4814128 func=40 file=33 line=45 - pc=4811708 func=41 file=42 line=141 - pc=4813956 func=39 file=33 line=43 -Stack id=24 nframes=1 - pc=4813616 func=32 file=33 line=54 + pc=4547349 func=49 file=50 line=42 + pc=4538780 func=45 file=42 line=257 + pc=4814277 func=37 file=36 line=125 + pc=4815228 func=38 file=31 line=27 +Stack id=23 nframes=1 + pc=4815568 func=38 file=31 line=54 +Stack id=3 nframes=4 + pc=4421860 func=51 file=52 line=1360 + pc=4538775 func=45 file=42 line=255 + pc=4814277 func=37 file=36 line=125 + pc=4815228 func=38 file=31 line=27 Stack id=21 nframes=2 - pc=4814276 func=49 file=42 line=80 - pc=4813974 func=39 file=33 line=50 + pc=4816228 func=53 file=33 line=80 + pc=4815926 func=34 file=31 line=50 +Stack id=1 nframes=4 + pc=4553515 func=54 file=55 line=255 + pc=4538503 func=45 file=42 line=237 + pc=4814277 func=37 file=36 line=125 + pc=4815228 func=38 file=31 line=27 Stack id=12 nframes=1 - pc=4813728 func=39 file=33 line=37 + pc=4815680 func=34 file=31 line=37 +Stack id=6 nframes=1 + pc=4544768 func=43 file=42 line=868 +Stack id=2 nframes=3 + pc=4538523 func=45 file=42 line=238 + pc=4814277 func=37 file=36 line=125 + pc=4815228 func=38 file=31 line=27 +Stack id=13 nframes=1 + pc=4815492 func=38 file=31 line=37 +Stack id=4 nframes=1 + pc=4547456 func=56 file=50 line=42 Stack id=14 nframes=2 - pc=4640519 func=50 file=51 line=116 - pc=4813550 func=32 file=33 line=51 -Stack id=9 nframes=2 - pc=4812399 func=38 file=31 line=128 - pc=4813276 func=32 file=33 line=27 -Stack id=22 nframes=3 - pc=4640260 func=52 file=51 line=81 - pc=4814374 func=53 file=51 line=87 - pc=4813989 func=39 file=33 line=50 + pc=4642407 func=57 file=47 line=116 + pc=4815502 func=38 file=31 line=51 +Stack id=18 nframes=5 + pc=4816147 func=58 file=31 line=46 + pc=4813660 func=32 file=33 line=141 + pc=4816080 func=30 file=31 line=45 + pc=4813660 func=32 file=33 line=141 + pc=4815908 func=34 file=31 line=43 Stack id=20 nframes=1 - pc=4813956 func=39 file=33 line=43 -Stack id=6 nframes=1 - pc=4543296 func=54 file=37 line=831 + pc=4815908 func=34 file=31 line=43 +Stack id=25 nframes=3 + pc=4217457 func=39 file=40 line=442 + pc=4544973 func=41 file=42 line=918 + pc=4547514 func=56 file=50 line=54 +Stack id=16 nframes=1 + pc=4815908 func=34 file=31 line=43 Stack id=15 nframes=1 - pc=4813886 func=39 file=33 line=41 -Stack id=18 nframes=5 - pc=4814195 func=55 file=33 line=46 - pc=4811708 func=41 file=42 line=141 - pc=4814128 func=40 file=33 line=45 - pc=4811708 func=41 file=42 line=141 - pc=4813956 func=39 file=33 line=43 -Stack id=23 nframes=3 - pc=4217457 func=56 file=57 line=442 - pc=4543501 func=58 file=37 line=881 - pc=4546010 func=46 file=47 line=54 -EventBatch gen=1 m=18446744073709551615 time=23991883804190 size=1620 + pc=4815838 func=34 file=31 line=41 +Stack id=19 nframes=3 + pc=4816080 func=30 file=31 line=45 + pc=4813660 func=32 file=33 line=141 + pc=4815908 func=34 file=31 line=43 +Stack id=10 nframes=1 + pc=4815332 func=38 file=31 line=33 +EventBatch gen=1 m=18446744073709551615 time=28113086274600 size=1620 Strings String id=1 data="Not worker" @@ -238,60 +240,60 @@ String id=28 String id=29 data="post-existing region" String id=30 - data="runtime/trace.Start.func1" + data="main.main.func1.1" String id=31 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/trace.go" + data="/usr/local/google/home/mknyszek/work/go-1/src/internal/trace/v2/testdata/testprog/annotations.go" String id=32 - data="main.main" + data="runtime/trace.WithRegion" String id=33 - data="/usr/local/google/home/mknyszek/work/go-1/src/internal/trace/v2/testdata/testprog/annotations.go" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/annotation.go" String id=34 - data="runtime.startTheWorld" + data="main.main.func1" String id=35 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/proc.go" + data="runtime/trace.Start.func1" String id=36 - data="runtime.StartTrace" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/trace.go" String id=37 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2.go" -String id=38 data="runtime/trace.Start" +String id=38 + data="main.main" String id=39 - data="main.main.func1" + data="runtime.chanrecv1" String id=40 - data="main.main.func1.1" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/chan.go" String id=41 - data="runtime/trace.WithRegion" + data="runtime.(*wakeableSleep).sleep" String id=42 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/annotation.go" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2.go" String id=43 - data="runtime.traceLocker.Gomaxprocs" + data="runtime.(*traceAdvancerState).start.func1" String id=44 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2runtime.go" -String id=45 data="runtime.(*traceAdvancerState).start" +String id=45 + data="runtime.StartTrace" String id=46 - data="runtime.traceStartReadCPU.func1" + data="sync.(*WaitGroup).Add" String id=47 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2cpu.go" + data="/usr/local/google/home/mknyszek/work/go-1/src/sync/waitgroup.go" String id=48 - data="runtime.traceStartReadCPU" + data="sync.(*WaitGroup).Done" String id=49 - data="runtime/trace.(*Task).End" + data="runtime.traceStartReadCPU" String id=50 - data="sync.(*WaitGroup).Wait" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2cpu.go" String id=51 - data="/usr/local/google/home/mknyszek/work/go-1/src/sync/waitgroup.go" + data="runtime.startTheWorld" String id=52 - data="sync.(*WaitGroup).Add" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/proc.go" String id=53 - data="sync.(*WaitGroup).Done" + data="runtime/trace.(*Task).End" String id=54 - data="runtime.(*traceAdvancerState).start.func1" + data="runtime.traceLocker.Gomaxprocs" String id=55 - data="main.main.func1.1.1" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2runtime.go" String id=56 - data="runtime.chanrecv1" + data="runtime.traceStartReadCPU.func1" String id=57 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/chan.go" + data="sync.(*WaitGroup).Wait" String id=58 - data="runtime.(*wakeableSleep).sleep" + data="main.main.func1.1.1" diff --git a/src/internal/trace/v2/testdata/tests/go122-gc-stress.test b/src/internal/trace/v2/testdata/tests/go122-gc-stress.test index 7192e8301f..8d77fe14af 100644 --- a/src/internal/trace/v2/testdata/tests/go122-gc-stress.test +++ b/src/internal/trace/v2/testdata/tests/go122-gc-stress.test @@ -2,2307 +2,4050 @@ SUCCESS -- trace -- Trace Go1.22 -EventBatch gen=6 m=18446744073709551615 time=22352100137206 size=5 +EventBatch gen=3 m=18446744073709551615 time=28114950954550 size=5 Frequency freq=15625000 -EventBatch gen=6 m=298977 time=22352100074002 size=210 -ProcStatus dt=1 p=18 pstatus=1 -GoStatus dt=2 g=46 m=298977 gstatus=2 -GoBlock dt=11 reason_string=15 stack=7 -GoStart dt=20 g=113 g_seq=1 -HeapAlloc dt=296 heapalloc_value=199905624 -GoStop dt=6015 reason_string=16 stack=3 -GoStart dt=10924 g=107 g_seq=1 -HeapAlloc dt=62 heapalloc_value=202878552 -GoStop dt=15189 reason_string=16 stack=3 -GoUnblock dt=15 g=46 g_seq=13 stack=0 -GoStart dt=6 g=46 g_seq=14 -GoLabel dt=1 label_string=2 -GoBlock dt=427 reason_string=15 stack=7 -GoStart dt=15 g=92 g_seq=4 -HeapAlloc dt=1205 heapalloc_value=203730520 -GoStop dt=13 reason_string=16 stack=3 -GoStart dt=11 g=103 g_seq=1 -HeapAlloc dt=53241 heapalloc_value=205831256 -GoStop dt=9 reason_string=16 stack=3 -GoStart dt=29 g=98 g_seq=3 -HeapAlloc dt=22 heapalloc_value=205921368 -HeapAlloc dt=45 heapalloc_value=206027864 -GoStop dt=58721 reason_string=16 stack=3 -GoStart dt=9 g=98 g_seq=4 -HeapAlloc dt=98 heapalloc_value=210099288 -HeapAlloc dt=29 heapalloc_value=210238552 -GoStop dt=5122 reason_string=16 stack=3 -GoStart dt=169 g=97 g_seq=5 -HeapAlloc dt=96 heapalloc_value=210459544 -HeapAlloc dt=95 heapalloc_value=210516888 -HeapAlloc dt=16 heapalloc_value=210582424 -HeapAlloc dt=36 heapalloc_value=210639768 -GCMarkAssistBegin dt=15 stack=2 -GoBlock dt=54 reason_string=10 stack=19 -ProcStop dt=59 -ProcStart dt=654 p=18 p_seq=1 -GoStart dt=16 g=85 g_seq=5 -HeapAlloc dt=4270 heapalloc_value=211139480 -GoStop dt=11 reason_string=16 stack=3 -GoStart dt=37 g=85 g_seq=6 -GCMarkAssistBegin dt=9 stack=2 -GoBlock dt=23 reason_string=10 stack=19 -ProcStop dt=1324 -EventBatch gen=6 m=298976 time=22352100053556 size=187 +EventBatch gen=3 m=169438 time=28114950899454 size=615 +ProcStatus dt=2 p=47 pstatus=1 +GoStatus dt=1 g=111 m=169438 gstatus=2 +GCMarkAssistActive dt=1 g=111 +GCMarkAssistEnd dt=1 +HeapAlloc dt=38 heapalloc_value=191159744 +HeapAlloc dt=134 heapalloc_value=191192512 +GCMarkAssistBegin dt=60 stack=3 +GoStop dt=2288 reason_string=20 stack=9 +GoStart dt=15 g=111 g_seq=1 +GCMarkAssistEnd dt=1860 +HeapAlloc dt=46 heapalloc_value=191585728 +GCMarkAssistBegin dt=35 stack=3 +GoBlock dt=32 reason_string=13 stack=11 +GoUnblock dt=14 g=57 g_seq=5 stack=0 +GoStart dt=9 g=57 g_seq=6 +GoLabel dt=3 label_string=2 +GoBlock dt=2925 reason_string=15 stack=5 +GoUnblock dt=12 g=57 g_seq=7 stack=0 +GoStart dt=5 g=57 g_seq=8 +GoLabel dt=1 label_string=2 +GoBlock dt=391 reason_string=15 stack=5 +GoUnblock dt=15 g=57 g_seq=9 stack=0 +GoStart dt=7 g=57 g_seq=10 +GoLabel dt=1 label_string=2 +GoBlock dt=307 reason_string=15 stack=5 +GoUnblock dt=7 g=57 g_seq=11 stack=0 +GoStart dt=3 g=57 g_seq=12 +GoLabel dt=2 label_string=2 +GoBlock dt=1049 reason_string=15 stack=5 +GoUnblock dt=23 g=58 g_seq=7 stack=0 +GoStart dt=8 g=58 g_seq=8 +GoLabel dt=1 label_string=2 +GoBlock dt=1126 reason_string=15 stack=5 +GoUnblock dt=12 g=53 g_seq=3 stack=0 +GoStart dt=5 g=53 g_seq=4 +GoLabel dt=1 label_string=2 +GoBlock dt=1751 reason_string=15 stack=5 +GoUnblock dt=12 g=53 g_seq=5 stack=0 +GoStart dt=6 g=53 g_seq=6 +GoLabel dt=3 label_string=2 +GoBlock dt=119 reason_string=15 stack=5 +GoStart dt=15 g=88 g_seq=4 +GoBlock dt=50 reason_string=13 stack=11 +GoUnblock dt=1212 g=54 g_seq=15 stack=0 +GoStart dt=6 g=54 g_seq=16 +GoLabel dt=1 label_string=4 +GoBlock dt=2984 reason_string=15 stack=5 +GoUnblock dt=2696 g=52 g_seq=21 stack=0 +GoStart dt=3 g=52 g_seq=22 +GoLabel dt=1 label_string=4 +GoBlock dt=2013 reason_string=15 stack=5 +GoStart dt=18 g=98 g_seq=6 +GCMarkAssistEnd dt=6 +HeapAlloc dt=44 heapalloc_value=192003520 +GCMarkAssistBegin dt=54 stack=3 +GoBlock dt=481 reason_string=13 stack=11 +GoUnblock dt=51 g=14 g_seq=17 stack=0 +GoStart dt=4 g=14 g_seq=18 +GoLabel dt=1 label_string=4 +GoBlock dt=3954 reason_string=15 stack=5 +GoUnblock dt=59 g=57 g_seq=41 stack=0 +GoStart dt=8 g=57 g_seq=42 +GoLabel dt=1 label_string=4 +GoBlock dt=63 reason_string=15 stack=5 +GoUnblock dt=11 g=57 g_seq=43 stack=0 +GoStart dt=4 g=57 g_seq=44 +GoLabel dt=1 label_string=2 +GoBlock dt=3186 reason_string=15 stack=5 +GoUnblock dt=11 g=57 g_seq=45 stack=0 +GoStart dt=3 g=57 g_seq=46 +GoLabel dt=1 label_string=2 +GoBlock dt=9 reason_string=15 stack=5 +ProcStop dt=60 +ProcStart dt=50 p=47 p_seq=1 +GoUnblock dt=9 g=22 g_seq=33 stack=0 +GoStart dt=4 g=22 g_seq=34 +GoLabel dt=1 label_string=4 +GoBlock dt=97 reason_string=15 stack=5 +GoUnblock dt=9 g=22 g_seq=35 stack=0 +GoStart dt=5 g=22 g_seq=36 +GoLabel dt=1 label_string=2 +GoBlock dt=2605 reason_string=15 stack=5 +GoUnblock dt=10 g=22 g_seq=37 stack=0 +GoStart dt=4 g=22 g_seq=38 +GoLabel dt=1 label_string=2 +GoBlock dt=13 reason_string=15 stack=5 +ProcStop dt=37 +ProcStart dt=582 p=47 p_seq=2 +GoStart dt=504 g=97 g_seq=4 +GCMarkAssistEnd dt=5 +GCMarkAssistBegin dt=34 stack=3 +GoBlock dt=279 reason_string=13 stack=11 +ProcStop dt=30 +ProcStart dt=3780 p=47 p_seq=3 +GoUnblock dt=9 g=71 g_seq=25 stack=0 +GoStart dt=128 g=71 g_seq=26 +GoLabel dt=1 label_string=2 +GoBlock dt=210 reason_string=15 stack=5 +GoUnblock dt=8 g=71 g_seq=27 stack=0 +GoStart dt=1 g=71 g_seq=28 +GoLabel dt=1 label_string=2 +GoBlock dt=1627 reason_string=15 stack=5 +GoStart dt=27 g=105 g_seq=6 +GCMarkAssistEnd dt=3 +HeapAlloc dt=44 heapalloc_value=192477912 +GCMarkAssistBegin dt=77 stack=3 +GoStop dt=873 reason_string=20 stack=9 +GoUnblock dt=12 g=23 g_seq=47 stack=0 +GoStart dt=3 g=23 g_seq=48 +GoLabel dt=1 label_string=2 +GoBlock dt=36 reason_string=15 stack=5 +GoUnblock dt=6 g=23 g_seq=49 stack=0 +GoStart dt=1 g=23 g_seq=50 +GoLabel dt=1 label_string=2 +GoBlock dt=9 reason_string=15 stack=5 +GoUnblock dt=8 g=23 g_seq=51 stack=0 +GoStart dt=3 g=23 g_seq=52 +GoLabel dt=1 label_string=2 +GoBlock dt=15 reason_string=15 stack=5 +GoStart dt=10 g=105 g_seq=7 +GoStop dt=16 reason_string=20 stack=9 +GoUnblock dt=7 g=23 g_seq=53 stack=0 +GoStart dt=3 g=23 g_seq=54 +GoLabel dt=1 label_string=2 +GoBlock dt=10 reason_string=15 stack=5 +GoUnblock dt=12 g=23 g_seq=55 stack=0 +GoStart dt=3 g=23 g_seq=56 +GoLabel dt=1 label_string=2 +GoBlock dt=9 reason_string=15 stack=5 +GoUnblock dt=4 g=23 g_seq=57 stack=0 +GoStart dt=1 g=23 g_seq=58 +GoLabel dt=1 label_string=2 +GoBlock dt=4554 reason_string=15 stack=5 +GoStart dt=14 g=105 g_seq=10 +GCMarkAssistEnd dt=5 +HeapAlloc dt=65 heapalloc_value=193682136 +GCMarkAssistBegin dt=16 stack=3 +GoBlock dt=44 reason_string=13 stack=11 +GoStart dt=15 g=83 g_seq=8 +HeapAlloc dt=221 heapalloc_value=194173656 +HeapAlloc dt=1927 heapalloc_value=195443416 +GoStop dt=5838 reason_string=16 stack=6 +GoStart dt=51 g=83 g_seq=9 +GCMarkAssistBegin dt=12 stack=3 +GoBlock dt=35 reason_string=10 stack=18 +GoStart dt=70 g=87 g_seq=6 +GCMarkAssistBegin dt=14 stack=3 +GoBlock dt=35 reason_string=13 stack=11 +ProcStop dt=77 +EventBatch gen=3 m=169436 time=28114950894898 size=160 +ProcStatus dt=2 p=34 pstatus=1 +GoStatus dt=3 g=107 m=169436 gstatus=2 +GCMarkAssistBegin dt=15 stack=3 +GoBlock dt=4050 reason_string=13 stack=11 +GoStatus dt=20 g=23 m=18446744073709551615 gstatus=4 +GoUnblock dt=3 g=23 g_seq=1 stack=0 +GoStart dt=8 g=23 g_seq=2 +GoLabel dt=1 label_string=2 +GoUnblock dt=2316 g=81 g_seq=1 stack=12 +GoBlock dt=626 reason_string=15 stack=5 +GoUnblock dt=9 g=23 g_seq=3 stack=0 +GoStart dt=9 g=23 g_seq=4 +GoLabel dt=1 label_string=2 +GoBlock dt=3975 reason_string=15 stack=5 +GoUnblock dt=35 g=23 g_seq=5 stack=0 +GoStart dt=6 g=23 g_seq=6 +GoLabel dt=1 label_string=2 +GoBlock dt=142 reason_string=15 stack=5 +GoUnblock dt=9 g=23 g_seq=7 stack=0 +GoStart dt=4 g=23 g_seq=8 +GoLabel dt=1 label_string=2 +GoBlock dt=3815 reason_string=15 stack=5 +GoUnblock dt=10 g=23 g_seq=9 stack=0 +GoStart dt=6 g=23 g_seq=10 +GoLabel dt=1 label_string=2 +GoBlock dt=3560 reason_string=15 stack=5 +GoUnblock dt=8 g=23 g_seq=11 stack=0 +GoStart dt=4 g=23 g_seq=12 +GoLabel dt=3 label_string=2 +GoBlock dt=2781 reason_string=15 stack=5 +GoUnblock dt=13 g=23 g_seq=13 stack=0 +GoStart dt=4 g=23 g_seq=14 +GoLabel dt=1 label_string=2 +GoBlock dt=1277 reason_string=15 stack=5 +ProcStop dt=16 +EventBatch gen=3 m=169435 time=28114950897148 size=522 +ProcStatus dt=2 p=24 pstatus=1 +GoStatus dt=2 g=122 m=169435 gstatus=2 +GCMarkAssistActive dt=1 g=122 +GCMarkAssistEnd dt=3 +HeapAlloc dt=24 heapalloc_value=190602688 +GCMarkAssistBegin dt=95 stack=3 +GCMarkAssistEnd dt=4651 +GCMarkAssistBegin dt=50 stack=3 +GoBlock dt=2931 reason_string=13 stack=11 +ProcStop dt=1401 +ProcStart dt=18 p=24 p_seq=1 +GoUnblock dt=3524 g=28 g_seq=5 stack=0 +GoStart dt=10 g=28 g_seq=6 +GoLabel dt=1 label_string=4 +GoBlock dt=42 reason_string=15 stack=5 +GoUnblock dt=1162 g=24 g_seq=11 stack=0 +GoStart dt=7 g=24 g_seq=12 +GoLabel dt=1 label_string=4 +GoBlock dt=3050 reason_string=15 stack=5 +GoUnblock dt=5301 g=67 g_seq=15 stack=0 +GoStart dt=4 g=67 g_seq=16 +GoLabel dt=1 label_string=4 +GoBlock dt=40 reason_string=15 stack=5 +ProcStop dt=64 +ProcStart dt=841 p=24 p_seq=2 +GoStatus dt=58 g=16 m=18446744073709551615 gstatus=4 +GoUnblock dt=3 g=16 g_seq=1 stack=0 +GoStart dt=273 g=16 g_seq=2 +GoLabel dt=1 label_string=4 +GoBlock dt=139 reason_string=15 stack=5 +ProcStop dt=52 +ProcStart dt=97 p=24 p_seq=3 +GoUnblock dt=5 g=16 g_seq=3 stack=0 +GoStart dt=2 g=16 g_seq=4 +GoLabel dt=1 label_string=4 +GoBlock dt=471 reason_string=15 stack=5 +GoUnblock dt=58 g=16 g_seq=5 stack=0 +GoStart dt=6 g=16 g_seq=6 +GoLabel dt=3 label_string=4 +GoBlock dt=912 reason_string=15 stack=5 +GoUnblock dt=9 g=16 g_seq=7 stack=0 +GoStart dt=6 g=16 g_seq=8 +GoLabel dt=1 label_string=2 +GoUnblock dt=6571 g=113 g_seq=5 stack=12 +GoBlock dt=22 reason_string=15 stack=5 +ProcStop dt=73 +ProcStart dt=22914 p=30 p_seq=16 +GoStart dt=342 g=117 g_seq=4 +GCMarkAssistEnd dt=8 +HeapAlloc dt=67 heapalloc_value=196467152 +GoStop dt=5253 reason_string=16 stack=6 +GoStart dt=44 g=128 g_seq=7 +GCMarkAssistBegin dt=21 stack=3 +GoBlock dt=37 reason_string=10 stack=18 +GoStart dt=7 g=130 g_seq=5 +GoBlock dt=182 reason_string=10 stack=20 +ProcStop dt=81 +ProcStart dt=8287 p=2 p_seq=2 +GoStart dt=164 g=82 g_seq=11 +GCMarkAssistEnd dt=8 +HeapAlloc dt=169 heapalloc_value=104038048 +HeapAlloc dt=135 heapalloc_value=104189856 +HeapAlloc dt=126 heapalloc_value=104287136 +HeapAlloc dt=24 heapalloc_value=104308256 +HeapAlloc dt=28 heapalloc_value=104313888 +HeapAlloc dt=14 heapalloc_value=104399904 +GCSweepBegin dt=43 stack=28 +GCSweepEnd dt=8 swept_value=8192 reclaimed_value=8192 +HeapAlloc dt=4 heapalloc_value=104473632 +HeapAlloc dt=58 heapalloc_value=104510496 +HeapAlloc dt=22 heapalloc_value=104534432 +HeapAlloc dt=51 heapalloc_value=104654624 +GCSweepBegin dt=146 stack=28 +GCSweepEnd dt=8 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=4 heapalloc_value=104878624 +HeapAlloc dt=42 heapalloc_value=105007648 +HeapAlloc dt=29 heapalloc_value=105077280 +HeapAlloc dt=36 heapalloc_value=105105952 +HeapAlloc dt=44 heapalloc_value=105242784 +HeapAlloc dt=58 heapalloc_value=105431200 +HeapAlloc dt=128 heapalloc_value=105593760 +HeapAlloc dt=199 heapalloc_value=106209440 +GCSweepBegin dt=155 stack=28 +GCSweepEnd dt=13 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=3 heapalloc_value=106666272 +HeapAlloc dt=77 heapalloc_value=106901152 +HeapAlloc dt=64 heapalloc_value=107211808 +HeapAlloc dt=133 heapalloc_value=107661088 +HeapAlloc dt=34 heapalloc_value=107722528 +HeapAlloc dt=108 heapalloc_value=108207392 +GCSweepBegin dt=202 stack=28 +GCSweepEnd dt=13 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=3 heapalloc_value=108742816 +HeapAlloc dt=112 heapalloc_value=109093664 +HeapAlloc dt=207 heapalloc_value=109913120 +HeapAlloc dt=271 heapalloc_value=110834560 +HeapAlloc dt=212 heapalloc_value=111566720 +HeapAlloc dt=148 heapalloc_value=112190720 +HeapAlloc dt=74 heapalloc_value=112528128 +HeapAlloc dt=143 heapalloc_value=113050240 +HeapAlloc dt=19 heapalloc_value=113194368 +HeapAlloc dt=135 heapalloc_value=113615232 +GCSweepBegin dt=251 stack=27 +EventBatch gen=3 m=169434 time=28114950909315 size=660 +ProcStatus dt=2 p=7 pstatus=1 +GoStatus dt=2 g=71 m=169434 gstatus=2 +GoBlock dt=6 reason_string=15 stack=5 +GoUnblock dt=2633 g=53 g_seq=7 stack=0 +GoStart dt=7 g=53 g_seq=8 +GoLabel dt=3 label_string=4 +GoBlock dt=127 reason_string=15 stack=5 +GoUnblock dt=1358 g=52 g_seq=15 stack=0 +GoStart dt=7 g=52 g_seq=16 +GoLabel dt=1 label_string=4 +GoBlock dt=27 reason_string=15 stack=5 +GoStart dt=1150 g=93 g_seq=4 +GCMarkAssistEnd dt=7 +HeapAlloc dt=39 heapalloc_value=191897024 +GCMarkAssistBegin dt=27 stack=3 +GoStop dt=894 reason_string=20 stack=9 +GoStart dt=13 g=93 g_seq=5 +GoBlock dt=150 reason_string=13 stack=11 +ProcStop dt=57 +ProcStart dt=14 p=7 p_seq=1 +ProcStop dt=4205 +ProcStart dt=18 p=7 p_seq=2 +GoUnblock dt=4 g=22 g_seq=17 stack=0 +GoStart dt=172 g=22 g_seq=18 +GoLabel dt=1 label_string=4 +GoBlock dt=1298 reason_string=15 stack=5 +GoUnblock dt=12 g=22 g_seq=19 stack=0 +GoStart dt=7 g=22 g_seq=20 +GoLabel dt=1 label_string=2 +GoBlock dt=108 reason_string=15 stack=5 +GoUnblock dt=9 g=22 g_seq=21 stack=0 +GoStart dt=4 g=22 g_seq=22 +GoLabel dt=1 label_string=2 +GoBlock dt=309 reason_string=15 stack=5 +GoUnblock dt=19 g=57 g_seq=35 stack=0 +GoStart dt=6 g=57 g_seq=36 +GoLabel dt=1 label_string=2 +GoBlock dt=26 reason_string=15 stack=5 +GoUnblock dt=12 g=30 g_seq=15 stack=0 +GoStart dt=4 g=30 g_seq=16 +GoLabel dt=1 label_string=2 +GoBlock dt=410 reason_string=15 stack=5 +GoUnblock dt=2384 g=23 g_seq=37 stack=0 +GoStart dt=7 g=23 g_seq=38 +GoLabel dt=1 label_string=4 +GoBlock dt=119 reason_string=15 stack=5 +GoUnblock dt=58 g=25 g_seq=21 stack=0 +GoStart dt=4 g=25 g_seq=22 +GoLabel dt=1 label_string=4 +GoBlock dt=1875 reason_string=15 stack=5 +GoUnblock dt=53 g=29 g_seq=15 stack=0 +GoStart dt=3 g=29 g_seq=16 +GoLabel dt=1 label_string=4 +GoBlock dt=133 reason_string=15 stack=5 +GoUnblock dt=51 g=25 g_seq=25 stack=0 +GoStart dt=5 g=25 g_seq=26 +GoLabel dt=1 label_string=4 +GoBlock dt=14 reason_string=15 stack=5 +GoUnblock dt=42 g=25 g_seq=27 stack=0 +GoStart dt=3 g=25 g_seq=28 +GoLabel dt=1 label_string=4 +GoBlock dt=56 reason_string=15 stack=5 +GoUnblock dt=1741 g=24 g_seq=41 stack=0 +GoStart dt=4 g=24 g_seq=42 +GoLabel dt=3 label_string=2 +GoBlock dt=15 reason_string=15 stack=5 +GoUnblock dt=26 g=25 g_seq=31 stack=0 +GoStart dt=4 g=25 g_seq=32 +GoLabel dt=1 label_string=2 +GoBlock dt=2653 reason_string=15 stack=5 +GoUnblock dt=10 g=25 g_seq=33 stack=0 +GoStart dt=6 g=25 g_seq=34 +GoLabel dt=1 label_string=2 +GoBlock dt=151 reason_string=15 stack=5 +GoUnblock dt=37 g=25 g_seq=35 stack=0 +GoStart dt=3 g=25 g_seq=36 +GoLabel dt=1 label_string=4 +GoBlock dt=12 reason_string=15 stack=5 +GoUnblock dt=8 g=25 g_seq=37 stack=0 +GoStart dt=3 g=25 g_seq=38 +GoLabel dt=1 label_string=2 +GoBlock dt=1197 reason_string=15 stack=5 +GoUnblock dt=38 g=22 g_seq=43 stack=0 +GoStart dt=7 g=22 g_seq=44 +GoLabel dt=1 label_string=4 +GoBlock dt=16 reason_string=15 stack=5 +ProcStop dt=28 +ProcStart dt=2728 p=7 p_seq=3 +GoUnblock dt=10 g=25 g_seq=39 stack=0 +GoStart dt=162 g=25 g_seq=40 +GoLabel dt=2 label_string=2 +GoBlock dt=36 reason_string=15 stack=5 +GoUnblock dt=10 g=25 g_seq=41 stack=0 +GoStart dt=4 g=25 g_seq=42 +GoLabel dt=1 label_string=2 +GoBlock dt=19 reason_string=15 stack=5 +GoUnblock dt=7 g=25 g_seq=43 stack=0 +GoStart dt=1 g=25 g_seq=44 +GoLabel dt=1 label_string=2 +GoUnblock dt=616 g=81 g_seq=6 stack=12 +GoBlock dt=1549 reason_string=15 stack=5 +GoStart dt=12 g=112 g_seq=5 +GoBlock dt=22 reason_string=13 stack=11 +GoStart dt=8 g=90 g_seq=4 +GCMarkAssistEnd dt=3 +HeapAlloc dt=2613 heapalloc_value=192625368 +GoStop dt=48 reason_string=16 stack=6 +GoUnblock dt=13 g=54 g_seq=35 stack=0 +GoStart dt=4 g=54 g_seq=36 +GoLabel dt=1 label_string=2 +GoBlock dt=269 reason_string=15 stack=5 +GoUnblock dt=6 g=54 g_seq=37 stack=0 +GoStart dt=5 g=54 g_seq=38 +GoLabel dt=1 label_string=2 +GoBlock dt=856 reason_string=15 stack=5 +GoUnblock dt=23 g=52 g_seq=61 stack=0 +GoStart dt=4 g=52 g_seq=62 +GoLabel dt=1 label_string=2 +GoBlock dt=33 reason_string=15 stack=5 +GoUnblock dt=13 g=52 g_seq=63 stack=0 +GoStart dt=2 g=52 g_seq=64 +GoLabel dt=1 label_string=2 +GoBlock dt=38 reason_string=15 stack=5 +GoUnblock dt=17 g=52 g_seq=65 stack=0 +GoStart dt=3 g=52 g_seq=66 +GoLabel dt=1 label_string=2 +GoBlock dt=37 reason_string=15 stack=5 +GoUnblock dt=11 g=52 g_seq=67 stack=0 +GoStart dt=4 g=52 g_seq=68 +GoLabel dt=1 label_string=2 +GoBlock dt=2457 reason_string=15 stack=5 +GoUnblock dt=11 g=52 g_seq=69 stack=0 +GoStart dt=4 g=52 g_seq=70 +GoLabel dt=1 label_string=2 +GoBlock dt=9 reason_string=15 stack=5 +GoStart dt=23 g=114 g_seq=4 +GCMarkAssistEnd dt=457 +HeapAlloc dt=223 heapalloc_value=194968280 +GoStop dt=6900 reason_string=16 stack=4 +GoStart dt=24 g=114 g_seq=5 +GCMarkAssistBegin dt=86 stack=3 +GoBlock dt=43 reason_string=10 stack=18 +ProcStop dt=49 +ProcStart dt=475 p=7 p_seq=4 +ProcStop dt=40 +ProcStart dt=1388 p=7 p_seq=5 +GoUnblock dt=9 g=131 g_seq=8 stack=0 +GoStart dt=169 g=131 g_seq=9 +GoSyscallBegin dt=24 p_seq=6 stack=7 +GoSyscallEnd dt=184 +GoBlock dt=11 reason_string=15 stack=2 +ProcStop dt=42 +ProcStart dt=18109 p=16 p_seq=2 +GoStart dt=176 g=91 g_seq=4 +GCMarkAssistEnd dt=8 +HeapAlloc dt=22 heapalloc_value=114837120 +HeapAlloc dt=88 heapalloc_value=114853504 +GCSweepBegin dt=145 stack=27 +EventBatch gen=3 m=169433 time=28114950897465 size=806 ProcStatus dt=2 p=2 pstatus=1 -GoStatus dt=2 g=39 m=298976 gstatus=2 -GoBlock dt=12 reason_string=15 stack=7 -GoUnblock dt=18 g=39 g_seq=1 stack=0 -GoStart dt=5 g=39 g_seq=2 -GoLabel dt=1 label_string=2 -GoBlock dt=21748 reason_string=15 stack=7 -GoStart dt=10826 g=101 g_seq=2 -HeapAlloc dt=3329 heapalloc_value=202296920 -GoStop dt=64 reason_string=16 stack=3 -GoUnblock dt=16 g=39 g_seq=7 stack=0 -GoStart dt=5 g=39 g_seq=8 +GoStatus dt=1 g=24 m=169433 gstatus=2 +GoBlock dt=9 reason_string=15 stack=5 +GoUnblock dt=19 g=24 g_seq=1 stack=0 +GoStart dt=5 g=24 g_seq=2 +GoLabel dt=2 label_string=2 +GoBlock dt=4044 reason_string=15 stack=5 +GoUnblock dt=17 g=24 g_seq=3 stack=0 +GoStart dt=4 g=24 g_seq=4 +GoLabel dt=1 label_string=2 +GoBlock dt=4262 reason_string=15 stack=5 +GoUnblock dt=19 g=28 g_seq=3 stack=0 +GoStart dt=4 g=28 g_seq=4 +GoLabel dt=1 label_string=2 +GoBlock dt=461 reason_string=15 stack=5 +GoUnblock dt=4544 g=72 g_seq=15 stack=0 +GoStart dt=9 g=72 g_seq=16 +GoLabel dt=3 label_string=4 +GoBlock dt=32 reason_string=15 stack=5 +GoUnblock dt=9 g=72 g_seq=17 stack=0 +GoStart dt=2 g=72 g_seq=18 +GoLabel dt=2 label_string=2 +GoBlock dt=13 reason_string=15 stack=5 +GoUnblock dt=3 g=72 g_seq=19 stack=0 +GoStart dt=1 g=72 g_seq=20 +GoLabel dt=1 label_string=2 +GoBlock dt=237 reason_string=15 stack=5 +GoUnblock dt=8 g=72 g_seq=21 stack=0 +GoStart dt=3 g=72 g_seq=22 +GoLabel dt=1 label_string=2 +GoBlock dt=151 reason_string=15 stack=5 +GoUnblock dt=11 g=72 g_seq=23 stack=0 +GoStart dt=6 g=72 g_seq=24 +GoLabel dt=1 label_string=2 +GoBlock dt=3418 reason_string=15 stack=5 +ProcStop dt=1573 +ProcStart dt=17 p=2 p_seq=1 +ProcStop dt=1102 +ProcStart dt=21668 p=19 p_seq=4 +GoUnblock dt=16 g=51 g_seq=47 stack=0 +GoStart dt=7 g=51 g_seq=48 +GoLabel dt=1 label_string=2 +GoBlock dt=60 reason_string=15 stack=5 +GoUnblock dt=6 g=51 g_seq=49 stack=0 +GoStart dt=1 g=51 g_seq=50 +GoLabel dt=3 label_string=2 +GoBlock dt=5166 reason_string=15 stack=5 +GoStart dt=18 g=106 g_seq=5 +GCMarkAssistEnd dt=10 +HeapAlloc dt=56 heapalloc_value=193452760 +GCMarkAssistBegin dt=116 stack=3 +GCMarkAssistEnd dt=58 +HeapAlloc dt=47 heapalloc_value=193714904 +GoStop dt=54 reason_string=16 stack=6 +GoUnblock dt=18 g=54 g_seq=41 stack=0 +GoStart dt=4 g=54 g_seq=42 GoLabel dt=2 label_string=2 -GoBlock dt=753 reason_string=15 stack=7 -GoStart dt=10 g=101 g_seq=3 -HeapAlloc dt=29 heapalloc_value=202477144 -HeapAlloc dt=45 heapalloc_value=202534488 -HeapAlloc dt=98 heapalloc_value=202591832 -HeapAlloc dt=47 heapalloc_value=202600024 -HeapAlloc dt=17 heapalloc_value=202649176 -HeapAlloc dt=144 heapalloc_value=202755672 -GoStop dt=51392 reason_string=16 stack=3 -GoStart dt=35 g=101 g_seq=4 -HeapAlloc dt=70 heapalloc_value=205085784 -HeapAlloc dt=58112 heapalloc_value=208591960 -GoStop dt=18 reason_string=16 stack=3 -GoStart dt=21 g=104 g_seq=3 -HeapAlloc dt=72 heapalloc_value=208739416 -HeapAlloc dt=49 heapalloc_value=208854104 -HeapAlloc dt=67 heapalloc_value=209009752 -GoStop dt=41544 reason_string=16 stack=3 -GoStart dt=66 g=58 g_seq=8 -HeapAlloc dt=80 heapalloc_value=212466200 -HeapAlloc dt=11761 heapalloc_value=213989912 -GoStop dt=3879 reason_string=16 stack=3 +GoUnblock dt=16 g=105 g_seq=11 stack=12 +GoBlock dt=21 reason_string=15 stack=5 +GoStart dt=8 g=105 g_seq=12 +GCMarkAssistEnd dt=7 +HeapAlloc dt=33 heapalloc_value=193919704 +GCMarkAssistBegin dt=13 stack=3 +GCMarkAssistEnd dt=91 +HeapAlloc dt=173 heapalloc_value=194378456 +GCMarkAssistBegin dt=26 stack=3 +GoBlock dt=37 reason_string=13 stack=11 +GoStart dt=33 g=104 g_seq=2 +GCMarkAssistEnd dt=5 +HeapAlloc dt=81 heapalloc_value=194673368 +GoStop dt=2248 reason_string=16 stack=6 +GoStart dt=2855 g=104 g_seq=3 +GCMarkAssistBegin dt=16 stack=3 +GoBlock dt=27 reason_string=10 stack=18 +GoStart dt=16 g=103 g_seq=5 +GCMarkAssistEnd dt=6 +HeapAlloc dt=6180 heapalloc_value=196655568 +GoStop dt=14 reason_string=16 stack=6 +GoStart dt=146 g=102 g_seq=5 +GCMarkAssistBegin dt=10 stack=3 +HeapAlloc dt=38 heapalloc_value=196663760 +GoBlock dt=16 reason_string=10 stack=18 +ProcStop dt=41 +ProcStart dt=1317 p=19 p_seq=5 +ProcStop dt=24 +ProcStart dt=2117 p=0 p_seq=5 +GoStart dt=5190 g=115 g_seq=10 +GCMarkAssistEnd dt=6 +GCSweepBegin dt=22 stack=27 +GCSweepEnd dt=727 swept_value=71303168 reclaimed_value=1302272 +HeapAlloc dt=37 heapalloc_value=103898784 +HeapAlloc dt=200 heapalloc_value=103947936 +HeapAlloc dt=63 heapalloc_value=103960224 +HeapAlloc dt=27 heapalloc_value=103997088 +HeapAlloc dt=65 heapalloc_value=104103584 +HeapAlloc dt=87 heapalloc_value=104132512 +HeapAlloc dt=63 heapalloc_value=104255392 +HeapAlloc dt=87 heapalloc_value=104267680 +HeapAlloc dt=73 heapalloc_value=104379424 +HeapAlloc dt=79 heapalloc_value=104494112 +GCSweepBegin dt=40 stack=28 +GCSweepEnd dt=7 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=8 heapalloc_value=104526880 +HeapAlloc dt=27 heapalloc_value=104589088 +HeapAlloc dt=42 heapalloc_value=104711968 +HeapAlloc dt=83 heapalloc_value=104821280 +GCSweepBegin dt=21 stack=28 +GCSweepEnd dt=4 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=2 heapalloc_value=104854048 +HeapAlloc dt=105 heapalloc_value=105064992 +GCSweepBegin dt=94 stack=28 +GCSweepEnd dt=9 swept_value=8192 reclaimed_value=8192 +HeapAlloc dt=4 heapalloc_value=105250976 +GCSweepBegin dt=29 stack=28 +GCSweepEnd dt=10 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=4 heapalloc_value=105447584 +HeapAlloc dt=30 heapalloc_value=105476256 +HeapAlloc dt=57 heapalloc_value=105566368 +GCSweepBegin dt=74 stack=28 +GCSweepEnd dt=5 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=3 heapalloc_value=105741216 +HeapAlloc dt=77 heapalloc_value=105921440 +HeapAlloc dt=76 heapalloc_value=106143904 +HeapAlloc dt=50 heapalloc_value=106274976 +HeapAlloc dt=113 heapalloc_value=106633504 +HeapAlloc dt=110 heapalloc_value=107036320 +HeapAlloc dt=95 heapalloc_value=107351072 +HeapAlloc dt=80 heapalloc_value=107702048 +GCSweepBegin dt=78 stack=28 +GCSweepEnd dt=6 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=2 heapalloc_value=107835936 +HeapAlloc dt=39 heapalloc_value=107904288 +HeapAlloc dt=82 heapalloc_value=108390432 +HeapAlloc dt=230 heapalloc_value=108955808 +HeapAlloc dt=126 heapalloc_value=109421344 +GCSweepBegin dt=131 stack=28 +GCSweepEnd dt=5 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=3 heapalloc_value=109929504 +GCSweepBegin dt=29 stack=28 +GCSweepEnd dt=4 swept_value=8192 reclaimed_value=8192 +HeapAlloc dt=3 heapalloc_value=110038816 +HeapAlloc dt=28 heapalloc_value=110109472 +HeapAlloc dt=93 heapalloc_value=110412672 +HeapAlloc dt=33 heapalloc_value=110547840 +HeapAlloc dt=123 heapalloc_value=111070848 +GCSweepBegin dt=155 stack=28 +GCSweepEnd dt=10 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=3 heapalloc_value=111648640 +GCSweepBegin dt=61 stack=28 +GCSweepEnd dt=8 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=3 heapalloc_value=111996800 +GCSweepBegin dt=37 stack=28 +GCSweepEnd dt=5 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=8 heapalloc_value=112149760 +HeapAlloc dt=32 heapalloc_value=112342272 +GCSweepBegin dt=75 stack=28 +GCSweepEnd dt=7 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=5 heapalloc_value=112601856 +HeapAlloc dt=61 heapalloc_value=112923264 +HeapAlloc dt=90 heapalloc_value=113262720 +HeapAlloc dt=88 heapalloc_value=113522304 +HeapAlloc dt=119 heapalloc_value=113967488 +HeapAlloc dt=59 heapalloc_value=114201216 +GCSweepBegin dt=130 stack=27 +EventBatch gen=3 m=169431 time=28114950897743 size=407 +ProcStatus dt=2 p=11 pstatus=1 +GoStatus dt=4 g=51 m=169431 gstatus=2 +GoBlock dt=6 reason_string=15 stack=5 +GoUnblock dt=13 g=51 g_seq=1 stack=0 +GoStart dt=6 g=51 g_seq=2 +GoLabel dt=1 label_string=2 +GoBlock dt=4143 reason_string=15 stack=5 +GoStatus dt=1425 g=28 m=18446744073709551615 gstatus=4 +GoUnblock dt=2 g=28 g_seq=1 stack=0 +GoStart dt=7 g=28 g_seq=2 +GoLabel dt=1 label_string=4 +GoBlock dt=1758 reason_string=15 stack=5 +GoUnblock dt=3904 g=25 g_seq=9 stack=0 +GoStart dt=9 g=25 g_seq=10 +GoLabel dt=1 label_string=4 +GoBlock dt=41 reason_string=15 stack=5 +ProcStop dt=1189 +ProcStart dt=16 p=11 p_seq=1 +GoUnblock dt=1157 g=57 g_seq=21 stack=0 +GoStart dt=6 g=57 g_seq=22 +GoLabel dt=1 label_string=4 +GoBlock dt=25 reason_string=15 stack=5 +GoUnblock dt=1614 g=52 g_seq=13 stack=0 +GoStart dt=11 g=52 g_seq=14 +GoLabel dt=4 label_string=4 +GoBlock dt=86 reason_string=15 stack=5 +GoUnblock dt=4771 g=22 g_seq=11 stack=0 +GoStart dt=12 g=22 g_seq=12 +GoLabel dt=1 label_string=4 +GoBlock dt=1413 reason_string=15 stack=5 +GoUnblock dt=10 g=22 g_seq=13 stack=0 +GoStart dt=4 g=22 g_seq=14 +GoLabel dt=1 label_string=2 +GoBlock dt=39 reason_string=15 stack=5 +ProcStop dt=67 +ProcStart dt=2286 p=11 p_seq=2 +ProcStop dt=95 +ProcStart dt=53 p=0 p_seq=2 +GoUnblock dt=9 g=57 g_seq=33 stack=0 +GoStart dt=8 g=57 g_seq=34 +GoLabel dt=1 label_string=4 +GoBlock dt=37 reason_string=15 stack=5 +GoUnblock dt=20 g=22 g_seq=23 stack=0 +GoStart dt=3 g=22 g_seq=24 +GoLabel dt=1 label_string=2 +GoBlock dt=1036 reason_string=15 stack=5 +GoUnblock dt=11 g=22 g_seq=25 stack=0 +GoStart dt=6 g=22 g_seq=26 +GoLabel dt=1 label_string=2 +GoBlock dt=2130 reason_string=15 stack=5 +GoUnblock dt=11 g=22 g_seq=27 stack=0 +GoStart dt=7 g=22 g_seq=28 +GoLabel dt=2 label_string=2 +GoBlock dt=1227 reason_string=15 stack=5 +GoUnblock dt=12 g=22 g_seq=29 stack=0 +GoStart dt=6 g=22 g_seq=30 +GoLabel dt=1 label_string=2 +GoBlock dt=31 reason_string=15 stack=5 +GoUnblock dt=7 g=22 g_seq=31 stack=0 +GoStart dt=2 g=22 g_seq=32 +GoLabel dt=1 label_string=2 +GoBlock dt=2282 reason_string=15 stack=5 +GoUnblock dt=71 g=29 g_seq=33 stack=0 +GoStart dt=4 g=29 g_seq=34 +GoLabel dt=1 label_string=4 +GoBlock dt=1234 reason_string=15 stack=5 +GoUnblock dt=8 g=29 g_seq=35 stack=0 +GoStart dt=8 g=29 g_seq=36 +GoLabel dt=1 label_string=2 +GoBlock dt=18 reason_string=15 stack=5 +ProcStop dt=49 +ProcStart dt=10623 p=11 p_seq=5 +ProcStop dt=54 +ProcStart dt=686 p=11 p_seq=6 +GoStart dt=185 g=127 g_seq=5 +GCMarkAssistBegin dt=71 stack=3 +GoStop dt=67 reason_string=20 stack=9 +GoUnblock dt=15 g=53 g_seq=47 stack=0 +GoStart dt=3 g=53 g_seq=48 +GoLabel dt=1 label_string=2 +GoUnblock dt=661 g=121 g_seq=10 stack=12 +GoUnblock dt=7 g=88 g_seq=5 stack=12 +GoUnblock dt=8 g=87 g_seq=4 stack=12 +GoUnblock dt=2751 g=94 g_seq=10 stack=12 +GoUnblock dt=8 g=106 g_seq=7 stack=12 +GoUnblock dt=8 g=98 g_seq=9 stack=12 +GoBlock dt=18 reason_string=15 stack=5 +GoStart dt=17 g=87 g_seq=5 +GCMarkAssistEnd dt=5 +HeapAlloc dt=202 heapalloc_value=194796248 +GoStop dt=7327 reason_string=16 stack=6 +GoStart dt=68 g=84 g_seq=8 +GCMarkAssistBegin dt=16 stack=3 +GoBlock dt=29 reason_string=13 stack=11 +ProcStop dt=88 +EventBatch gen=3 m=169428 time=28114950899204 size=756 +ProcStatus dt=2 p=31 pstatus=1 +GoStatus dt=5 g=104 m=169428 gstatus=2 +GCMarkAssistActive dt=1 g=104 +GCMarkAssistEnd dt=2 +HeapAlloc dt=37 heapalloc_value=191110592 +GCMarkAssistBegin dt=21 stack=3 +GoBlock dt=2670 reason_string=13 stack=11 +GoStatus dt=1400 g=22 m=18446744073709551615 gstatus=4 +GoUnblock dt=3 g=22 g_seq=1 stack=0 +GoStart dt=7 g=22 g_seq=2 +GoLabel dt=1 label_string=4 +GoBlock dt=43 reason_string=15 stack=5 +GoUnblock dt=2567 g=70 g_seq=3 stack=0 +GoStart dt=9 g=70 g_seq=4 +GoLabel dt=1 label_string=4 +GoBlock dt=329 reason_string=15 stack=5 +GoUnblock dt=97 g=70 g_seq=5 stack=0 +GoStart dt=5 g=70 g_seq=6 +GoLabel dt=3 label_string=2 +GoUnblock dt=1728 g=84 g_seq=3 stack=12 +GoBlock dt=3527 reason_string=15 stack=5 +GoStart dt=4132 g=114 g_seq=2 +GoStatus dt=28 g=115 m=18446744073709551615 gstatus=4 +GoUnblock dt=8 g=115 g_seq=1 stack=10 +GCMarkAssistBegin dt=18 stack=3 +GoBlock dt=196 reason_string=13 stack=11 +GoStart dt=14 g=115 g_seq=2 +GoStatus dt=18 g=102 m=18446744073709551615 gstatus=4 +GoUnblock dt=3 g=102 g_seq=1 stack=10 +GCMarkAssistBegin dt=13 stack=3 +GoBlock dt=371 reason_string=13 stack=11 +GoUnblock dt=9 g=30 g_seq=11 stack=0 +GoStart dt=6 g=30 g_seq=12 +GoLabel dt=1 label_string=2 +GoBlock dt=5520 reason_string=15 stack=5 +GoUnblock dt=8 g=30 g_seq=13 stack=0 +GoStart dt=4 g=30 g_seq=14 +GoLabel dt=1 label_string=2 +GoBlock dt=28 reason_string=15 stack=5 +GoUnblock dt=10 g=57 g_seq=37 stack=0 +GoStart dt=3 g=57 g_seq=38 +GoLabel dt=1 label_string=2 +GoBlock dt=157 reason_string=15 stack=5 +GoUnblock dt=7 g=57 g_seq=39 stack=0 +GoStart dt=4 g=57 g_seq=40 +GoLabel dt=1 label_string=2 +GoBlock dt=140 reason_string=15 stack=5 +GoUnblock dt=10 g=53 g_seq=25 stack=0 +GoStart dt=3 g=53 g_seq=26 +GoLabel dt=1 label_string=2 +GoBlock dt=90 reason_string=15 stack=5 +GoUnblock dt=62 g=53 g_seq=27 stack=0 +GoStart dt=4 g=53 g_seq=28 +GoLabel dt=1 label_string=4 +GoBlock dt=11 reason_string=15 stack=5 +GoUnblock dt=46 g=53 g_seq=29 stack=0 +GoStart dt=7 g=53 g_seq=30 +GoLabel dt=1 label_string=4 +GoBlock dt=51 reason_string=15 stack=5 +ProcStop dt=2236 +ProcStart dt=966 p=35 p_seq=2 +GoStart dt=19 g=81 g_seq=5 +GCMarkAssistEnd dt=7 +HeapAlloc dt=67 heapalloc_value=192133920 +GCMarkAssistBegin dt=46 stack=3 +GoBlock dt=32 reason_string=13 stack=11 +ProcStop dt=57 +ProcStart dt=15 p=35 p_seq=3 +GoUnblock dt=2 g=69 g_seq=23 stack=0 +GoStart dt=2 g=69 g_seq=24 +GoLabel dt=1 label_string=4 +GoBlock dt=224 reason_string=15 stack=5 +GoUnblock dt=52 g=69 g_seq=25 stack=0 +GoStart dt=3 g=69 g_seq=26 +GoLabel dt=1 label_string=4 +GoBlock dt=289 reason_string=15 stack=5 +GoStart dt=23 g=118 g_seq=2 +GCMarkAssistEnd dt=7 +HeapAlloc dt=21 heapalloc_value=192207648 +GCMarkAssistBegin dt=103 stack=3 +GoBlock dt=18 reason_string=13 stack=11 +GoUnblock dt=48 g=29 g_seq=13 stack=0 +GoStart dt=1 g=29 g_seq=14 +GoLabel dt=1 label_string=4 +GoBlock dt=19 reason_string=15 stack=5 +GoUnblock dt=44 g=25 g_seq=23 stack=0 +GoStart dt=6 g=25 g_seq=24 +GoLabel dt=1 label_string=4 +GoBlock dt=144 reason_string=15 stack=5 +GoUnblock dt=49 g=29 g_seq=17 stack=0 +GoStart dt=1 g=29 g_seq=18 +GoLabel dt=1 label_string=4 +GoBlock dt=777 reason_string=15 stack=5 +GoUnblock dt=56 g=52 g_seq=31 stack=0 +GoStart dt=3 g=52 g_seq=32 +GoLabel dt=1 label_string=4 +GoBlock dt=21 reason_string=15 stack=5 +GoUnblock dt=27 g=51 g_seq=33 stack=0 +GoStart dt=5 g=51 g_seq=34 +GoLabel dt=1 label_string=2 +GoBlock dt=12 reason_string=15 stack=5 +GoUnblock dt=13 g=51 g_seq=35 stack=0 +GoStart dt=4 g=51 g_seq=36 +GoLabel dt=1 label_string=2 +GoBlock dt=226 reason_string=15 stack=5 +GoUnblock dt=7 g=51 g_seq=37 stack=0 +GoStart dt=4 g=51 g_seq=38 +GoLabel dt=1 label_string=2 +GoBlock dt=3928 reason_string=15 stack=5 +GoUnblock dt=14 g=51 g_seq=39 stack=0 +GoStart dt=3 g=51 g_seq=40 +GoLabel dt=3 label_string=2 +GoBlock dt=214 reason_string=15 stack=5 +GoUnblock dt=5 g=51 g_seq=41 stack=0 +GoStart dt=1 g=51 g_seq=42 +GoLabel dt=1 label_string=2 +GoBlock dt=305 reason_string=15 stack=5 +GoUnblock dt=8 g=51 g_seq=43 stack=0 +GoStart dt=5 g=51 g_seq=44 +GoLabel dt=1 label_string=2 +GoBlock dt=9 reason_string=15 stack=5 +ProcStop dt=47 +ProcStart dt=5058 p=35 p_seq=4 +GoUnblock dt=20 g=52 g_seq=51 stack=0 +GoStart dt=188 g=52 g_seq=52 +GoLabel dt=1 label_string=2 +GoBlock dt=33 reason_string=15 stack=5 +GoUnblock dt=9 g=52 g_seq=53 stack=0 +GoStart dt=4 g=52 g_seq=54 +GoLabel dt=1 label_string=2 +GoBlock dt=12 reason_string=15 stack=5 +GoStart dt=14 g=126 g_seq=3 +GCMarkAssistEnd dt=7 +HeapAlloc dt=2068 heapalloc_value=192592600 +GoStop dt=31 reason_string=16 stack=4 +GoUnblock dt=10 g=30 g_seq=39 stack=0 +GoStart dt=4 g=30 g_seq=40 +GoLabel dt=1 label_string=2 +GoBlock dt=54 reason_string=15 stack=5 +GoStart dt=708 g=121 g_seq=9 +GoBlock dt=49 reason_string=13 stack=11 +GoStart dt=18 g=90 g_seq=5 +GCMarkAssistBegin dt=12 stack=3 +GoBlock dt=39 reason_string=13 stack=11 +GoUnblock dt=15 g=71 g_seq=31 stack=0 +GoStart dt=4 g=71 g_seq=32 +GoLabel dt=2 label_string=2 +GoBlock dt=1101 reason_string=15 stack=5 +GoUnblock dt=13 g=71 g_seq=33 stack=0 +GoStart dt=4 g=71 g_seq=34 +GoLabel dt=1 label_string=2 +GoBlock dt=27 reason_string=15 stack=5 +GoUnblock dt=18 g=14 g_seq=54 stack=0 +GoStart dt=4 g=14 g_seq=55 +GoLabel dt=2 label_string=2 +GoUnblock dt=2171 g=94 g_seq=8 stack=12 +GoBlock dt=28 reason_string=15 stack=5 +GoStart dt=11 g=94 g_seq=9 +GCMarkAssistEnd dt=6 +HeapAlloc dt=42 heapalloc_value=193665752 +GCMarkAssistBegin dt=100 stack=3 +GoBlock dt=30 reason_string=13 stack=11 +GoStart dt=13 g=106 g_seq=6 +HeapAlloc dt=99 heapalloc_value=193977048 +GCMarkAssistBegin dt=21 stack=3 +GoBlock dt=30 reason_string=13 stack=11 +GoStart dt=16 g=92 g_seq=4 +GCMarkAssistEnd dt=6 +HeapAlloc dt=884 heapalloc_value=195205848 +GoStop dt=3270 reason_string=16 stack=4 +GoStart dt=29 g=97 g_seq=6 +GCMarkAssistEnd dt=6 +HeapAlloc dt=42 heapalloc_value=195795408 +GCMarkAssistBegin dt=3026 stack=3 +GoBlock dt=85 reason_string=10 stack=18 +ProcStop dt=99 +EventBatch gen=3 m=169426 time=28114950897488 size=116 +ProcStatus dt=1 p=32 pstatus=1 +GoStatus dt=2 g=90 m=169426 gstatus=2 +GCMarkAssistActive dt=1 g=90 +GCMarkAssistEnd dt=3 +HeapAlloc dt=47 heapalloc_value=190627264 +GCMarkAssistBegin dt=51 stack=3 +GoBlock dt=2393 reason_string=13 stack=11 +GoStart dt=1449 g=125 g_seq=2 +GoStatus dt=26 g=127 m=18446744073709551615 gstatus=4 +GoUnblock dt=16 g=127 g_seq=1 stack=10 +GCMarkAssistBegin dt=17 stack=3 +GoStop dt=6909 reason_string=20 stack=9 +GoStart dt=20 g=125 g_seq=3 +GoBlock dt=2101 reason_string=13 stack=11 +GoUnblock dt=2575 g=71 g_seq=11 stack=0 +GoStart dt=8 g=71 g_seq=12 +GoLabel dt=3 label_string=4 +GoBlock dt=44 reason_string=15 stack=5 +GoStart dt=20 g=82 g_seq=7 +GoBlock dt=367 reason_string=13 stack=11 +GoUnblock dt=11 g=22 g_seq=9 stack=0 +GoStart dt=4 g=22 g_seq=10 +GoLabel dt=1 label_string=2 +GoBlock dt=3492 reason_string=15 stack=5 +ProcStop dt=9 +EventBatch gen=3 m=169425 time=28114950900302 size=349 +ProcStatus dt=2 p=10 pstatus=1 +GoStatus dt=2 g=70 m=169425 gstatus=2 +GoBlock dt=8 reason_string=15 stack=5 +GoUnblock dt=15 g=70 g_seq=1 stack=0 +GoStart dt=5 g=70 g_seq=2 +GoLabel dt=1 label_string=2 +GoBlock dt=5604 reason_string=15 stack=5 +GoUnblock dt=33 g=29 g_seq=3 stack=0 +GoStart dt=5 g=29 g_seq=4 +GoLabel dt=1 label_string=2 +GoBlock dt=1191 reason_string=15 stack=5 +GoUnblock dt=9 g=29 g_seq=5 stack=0 +GoStart dt=5 g=29 g_seq=6 +GoLabel dt=2 label_string=2 +GoBlock dt=1935 reason_string=15 stack=5 +GoUnblock dt=15 g=51 g_seq=11 stack=0 +GoStart dt=5 g=51 g_seq=12 +GoLabel dt=1 label_string=2 +GoBlock dt=307 reason_string=15 stack=5 +ProcStop dt=4189 +ProcStart dt=15 p=10 p_seq=1 +GoUnblock dt=10 g=69 g_seq=17 stack=0 +GoStart dt=4 g=69 g_seq=18 +GoLabel dt=1 label_string=2 +GoUnblock dt=780 g=93 g_seq=3 stack=12 +GoBlock dt=6076 reason_string=15 stack=5 +GoUnblock dt=11 g=69 g_seq=19 stack=0 +GoStart dt=4 g=69 g_seq=20 +GoLabel dt=3 label_string=2 +GoUnblock dt=93 g=98 g_seq=5 stack=12 +GoBlock dt=5034 reason_string=15 stack=5 +GoUnblock dt=14 g=58 g_seq=25 stack=0 +GoStart dt=5 g=58 g_seq=26 +GoLabel dt=2 label_string=2 +GoBlock dt=1253 reason_string=15 stack=5 +GoUnblock dt=6 g=58 g_seq=27 stack=0 +GoStart dt=4 g=58 g_seq=28 +GoLabel dt=1 label_string=2 +GoBlock dt=1031 reason_string=15 stack=5 +GoUnblock dt=6 g=58 g_seq=29 stack=0 +GoStart dt=4 g=58 g_seq=30 +GoLabel dt=1 label_string=2 +GoBlock dt=17 reason_string=15 stack=5 +GoUnblock dt=24 g=52 g_seq=33 stack=0 +GoStart dt=6 g=52 g_seq=34 +GoLabel dt=1 label_string=2 +GoBlock dt=321 reason_string=15 stack=5 +GoUnblock dt=75 g=29 g_seq=27 stack=0 +GoStart dt=4 g=29 g_seq=28 +GoLabel dt=1 label_string=4 +GoBlock dt=248 reason_string=15 stack=5 +GoUnblock dt=61 g=57 g_seq=47 stack=0 +GoStart dt=4 g=57 g_seq=48 +GoLabel dt=1 label_string=4 +GoBlock dt=794 reason_string=15 stack=5 +ProcStop dt=41 +ProcStart dt=15678 p=21 p_seq=3 +GoStart dt=22 g=88 g_seq=6 +GCMarkAssistEnd dt=9 +HeapAlloc dt=84 heapalloc_value=194730712 +GoStop dt=2177 reason_string=16 stack=6 +GoStart dt=2495 g=88 g_seq=7 +GCMarkAssistBegin dt=19 stack=3 +GoBlock dt=37 reason_string=10 stack=18 +GoStart dt=15 g=126 g_seq=6 +GCMarkAssistEnd dt=5 +HeapAlloc dt=27 heapalloc_value=196114896 +GCMarkAssistBegin dt=18 stack=3 +GoBlock dt=30 reason_string=10 stack=18 +GoStart dt=15 g=98 g_seq=10 +GCMarkAssistEnd dt=6 +HeapAlloc dt=48 heapalloc_value=196155856 +GoStop dt=6168 reason_string=16 stack=6 +GoStart dt=156 g=98 g_seq=11 +GCMarkAssistBegin dt=9 stack=3 +GoBlock dt=27 reason_string=10 stack=18 +GoStart dt=27 g=94 g_seq=12 +GCMarkAssistBegin dt=13 stack=3 +GoBlock dt=35 reason_string=10 stack=18 +ProcStop dt=55 +ProcStart dt=14725 p=13 p_seq=1 +GoStart dt=171 g=112 g_seq=9 +GCMarkAssistEnd dt=6 +GCSweepBegin dt=222 stack=27 +EventBatch gen=3 m=169424 time=28114950894869 size=176 +ProcStatus dt=1 p=23 pstatus=3 +GoStatus dt=2 g=131 m=169424 gstatus=3 +GoSyscallEnd dt=1 +GoBlock dt=64 reason_string=15 stack=2 +GoUnblock dt=2260 g=67 g_seq=1 stack=0 +GoStart dt=6 g=67 g_seq=2 +GoLabel dt=2 label_string=4 +GoBlock dt=530 reason_string=15 stack=5 +GoUnblock dt=12 g=69 g_seq=3 stack=0 +GoStart dt=5 g=69 g_seq=4 +GoLabel dt=1 label_string=2 +GoUnblock dt=2455 g=90 g_seq=1 stack=12 +GoBlock dt=20 reason_string=15 stack=5 +GoUnblock dt=16 g=69 g_seq=5 stack=0 +GoStart dt=7 g=69 g_seq=6 +GoLabel dt=1 label_string=2 +GoUnblock dt=493 g=120 g_seq=2 stack=12 +GoBlock dt=1777 reason_string=15 stack=5 +GoUnblock dt=832 g=69 g_seq=7 stack=0 +GoStart dt=9 g=69 g_seq=8 +GoLabel dt=2 label_string=2 +GoBlock dt=5425 reason_string=15 stack=5 +GoUnblock dt=15 g=69 g_seq=9 stack=0 +GoStart dt=4 g=69 g_seq=10 +GoLabel dt=1 label_string=2 +GoBlock dt=1370 reason_string=15 stack=5 +ProcStop dt=2533 +ProcStart dt=11 p=23 p_seq=1 +GoUnblock dt=3354 g=54 g_seq=17 stack=0 +GoStart dt=7 g=54 g_seq=18 +GoLabel dt=1 label_string=4 +GoBlock dt=29 reason_string=15 stack=5 +GoUnblock dt=25 g=54 g_seq=19 stack=0 +GoStart dt=5 g=54 g_seq=20 +GoLabel dt=2 label_string=2 +GoBlock dt=232 reason_string=15 stack=5 +GoUnblock dt=11 g=54 g_seq=21 stack=0 +GoStart dt=7 g=54 g_seq=22 +GoLabel dt=1 label_string=2 +GoBlock dt=293 reason_string=15 stack=5 ProcStop dt=11 -EventBatch gen=6 m=298975 time=22352100055368 size=212 -ProcStatus dt=1 p=6 pstatus=1 -GoStatus dt=2 g=88 m=298975 gstatus=2 -GCMarkAssistActive dt=1 g=88 +EventBatch gen=3 m=169423 time=28114950894865 size=525 +ProcStatus dt=2 p=30 pstatus=1 +GoStatus dt=4 g=87 m=169423 gstatus=2 +GCMarkAssistActive dt=1 g=87 +GCMarkAssistEnd dt=2 +HeapAlloc dt=98 heapalloc_value=189963712 +GoStop dt=56 reason_string=16 stack=6 +GoUnblock dt=20 g=131 g_seq=1 stack=0 +GoStart dt=7 g=131 g_seq=2 +GoSyscallBegin dt=39 p_seq=1 stack=7 +GoSyscallEnd dt=304 +GoSyscallBegin dt=19 p_seq=2 stack=7 +GoSyscallEnd dt=59 +GoSyscallBegin dt=15 p_seq=3 stack=7 +GoSyscallEnd dt=52 +GoSyscallBegin dt=11 p_seq=4 stack=7 +GoSyscallEnd dt=50 +GoSyscallBegin dt=8 p_seq=5 stack=7 +GoSyscallEnd dt=48 +GoSyscallBegin dt=10 p_seq=6 stack=7 +GoSyscallEnd dt=54 +GoSyscallBegin dt=13 p_seq=7 stack=7 +GoSyscallEnd dt=51 +GoSyscallBegin dt=12 p_seq=8 stack=7 +GoSyscallEnd dt=49 +GoSyscallBegin dt=16 p_seq=9 stack=7 +GoSyscallEnd dt=245 +GoSyscallBegin dt=12 p_seq=10 stack=7 +GoSyscallEnd dt=49 +GoSyscallBegin dt=10 p_seq=11 stack=7 +GoSyscallEnd dt=49 +GoSyscallBegin dt=10 p_seq=12 stack=7 +GoSyscallEnd dt=48 +GoSyscallBegin dt=6 p_seq=13 stack=7 +GoSyscallEnd dt=52 +GoStop dt=24 reason_string=16 stack=8 +GoUnblock dt=9 g=14 g_seq=1 stack=0 +GoStart dt=5 g=14 g_seq=2 +GoLabel dt=1 label_string=2 +GoUnblock dt=2948 g=107 g_seq=1 stack=12 +GoBlock dt=2891 reason_string=15 stack=5 +GoUnblock dt=11 g=14 g_seq=3 stack=0 +GoStart dt=5 g=14 g_seq=4 +GoLabel dt=1 label_string=2 +GoBlock dt=1138 reason_string=15 stack=5 +GoUnblock dt=22 g=51 g_seq=5 stack=0 +GoStart dt=5 g=51 g_seq=6 +GoLabel dt=1 label_string=2 +GoUnblock dt=451 g=82 g_seq=3 stack=12 +GoBlock dt=460 reason_string=15 stack=5 +GoUnblock dt=4052 g=54 g_seq=5 stack=0 +GoStart dt=11 g=54 g_seq=6 +GoLabel dt=1 label_string=4 +GoBlock dt=72 reason_string=15 stack=5 +GoUnblock dt=1333 g=57 g_seq=15 stack=0 +GoStart dt=8 g=57 g_seq=16 +GoLabel dt=1 label_string=4 +GoBlock dt=283 reason_string=15 stack=5 +GoUnblock dt=1185 g=57 g_seq=19 stack=0 +GoStart dt=7 g=57 g_seq=20 +GoLabel dt=1 label_string=4 +GoBlock dt=134 reason_string=15 stack=5 +GoUnblock dt=1144 g=53 g_seq=11 stack=0 +GoStart dt=6 g=53 g_seq=12 +GoLabel dt=1 label_string=4 +GoBlock dt=372 reason_string=15 stack=5 +GoUnblock dt=16 g=53 g_seq=13 stack=0 +GoStart dt=7 g=53 g_seq=14 +GoLabel dt=1 label_string=2 +GoBlock dt=8581 reason_string=15 stack=5 +ProcStop dt=76 +ProcStart dt=22 p=30 p_seq=14 +GoUnblock dt=3 g=72 g_seq=31 stack=0 +GoStart dt=7 g=72 g_seq=32 +GoLabel dt=1 label_string=4 +GoBlock dt=46 reason_string=15 stack=5 +GoUnblock dt=63 g=23 g_seq=31 stack=0 +GoStart dt=7 g=23 g_seq=32 +GoLabel dt=1 label_string=4 +GoBlock dt=34 reason_string=15 stack=5 +GoUnblock dt=14 g=23 g_seq=33 stack=0 +GoStart dt=4 g=23 g_seq=34 +GoLabel dt=2 label_string=2 +GoBlock dt=47 reason_string=15 stack=5 +GoUnblock dt=74 g=53 g_seq=19 stack=0 +GoStart dt=6 g=53 g_seq=20 +GoLabel dt=1 label_string=4 +GoBlock dt=154 reason_string=15 stack=5 +GoStatus dt=91 g=56 m=18446744073709551615 gstatus=4 +GoUnblock dt=2 g=56 g_seq=1 stack=0 +GoStart dt=43 g=56 g_seq=2 +GoLabel dt=1 label_string=4 +GoBlock dt=45 reason_string=15 stack=5 +GoUnblock dt=65 g=53 g_seq=23 stack=0 +GoStart dt=8 g=53 g_seq=24 +GoLabel dt=1 label_string=4 +GoBlock dt=16 reason_string=15 stack=5 +ProcStop dt=2526 +ProcStart dt=208 p=30 p_seq=15 +GoUnblock dt=8 g=53 g_seq=37 stack=0 +GoStart dt=5 g=53 g_seq=38 +GoLabel dt=1 label_string=4 +GoBlock dt=694 reason_string=15 stack=5 +GoUnblock dt=14 g=53 g_seq=39 stack=0 +GoStart dt=4 g=53 g_seq=40 +GoLabel dt=3 label_string=2 +GoBlock dt=336 reason_string=15 stack=5 +GoUnblock dt=52 g=53 g_seq=41 stack=0 +GoStart dt=4 g=53 g_seq=42 +GoLabel dt=1 label_string=4 +GoUnblock dt=449 g=118 g_seq=1 stack=12 +GoBlock dt=17 reason_string=15 stack=5 +GoUnblock dt=65 g=24 g_seq=31 stack=0 +GoStart dt=6 g=24 g_seq=32 +GoLabel dt=2 label_string=4 +GoBlock dt=56 reason_string=15 stack=5 +GoUnblock dt=54 g=24 g_seq=33 stack=0 +GoStart dt=5 g=24 g_seq=34 +GoLabel dt=1 label_string=4 +GoBlock dt=489 reason_string=15 stack=5 +GoUnblock dt=9 g=24 g_seq=35 stack=0 +GoStart dt=4 g=24 g_seq=36 +GoLabel dt=1 label_string=2 +GoBlock dt=1307 reason_string=15 stack=5 +ProcStop dt=84 +ProcStart dt=23944 p=15 p_seq=1 +GoStart dt=174 g=108 g_seq=3 +GCMarkAssistBegin dt=25 stack=3 +GoBlock dt=59 reason_string=10 stack=18 +ProcStop dt=71 +EventBatch gen=3 m=169421 time=28114950900230 size=330 +ProcStatus dt=1 p=33 pstatus=1 +GoStatus dt=5 g=81 m=169421 gstatus=2 +GCMarkAssistActive dt=3 g=81 +GoBlock dt=7 reason_string=13 stack=11 +GoStatus dt=1543 g=57 m=18446744073709551615 gstatus=4 +GoUnblock dt=3 g=57 g_seq=1 stack=0 +GoStart dt=10 g=57 g_seq=2 +GoLabel dt=1 label_string=4 +GoBlock dt=123 reason_string=15 stack=5 +GoStatus dt=1345 g=58 m=18446744073709551615 gstatus=4 +GoUnblock dt=3 g=58 g_seq=1 stack=0 +GoStart dt=5 g=58 g_seq=2 +GoLabel dt=1 label_string=4 +GoBlock dt=154 reason_string=15 stack=5 +GoUnblock dt=5938 g=54 g_seq=7 stack=0 +GoStart dt=7 g=54 g_seq=8 +GoLabel dt=1 label_string=4 +GoBlock dt=93 reason_string=15 stack=5 +GoStart dt=1331 g=97 g_seq=2 +GoStatus dt=26 g=93 m=18446744073709551615 gstatus=4 +GoUnblock dt=6 g=93 g_seq=1 stack=10 +GCMarkAssistBegin dt=18 stack=3 +GCMarkAssistEnd dt=1894 +HeapAlloc dt=57 heapalloc_value=191872448 +GCMarkAssistBegin dt=26 stack=3 +GoBlock dt=46 reason_string=13 stack=11 +GoUnblock dt=2442 g=52 g_seq=19 stack=0 +GoStart dt=14 g=52 g_seq=20 +GoLabel dt=1 label_string=4 +GoBlock dt=767 reason_string=15 stack=5 +ProcStop dt=2248 +ProcStart dt=24 p=33 p_seq=1 +GoUnblock dt=8 g=72 g_seq=27 stack=0 +GoStart dt=7 g=72 g_seq=28 +GoLabel dt=1 label_string=4 +GoUnblock dt=172 g=119 g_seq=3 stack=12 +GoBlock dt=1629 reason_string=15 stack=5 +GoUnblock dt=71 g=28 g_seq=9 stack=0 +GoStart dt=7 g=28 g_seq=10 +GoLabel dt=1 label_string=4 +GoBlock dt=276 reason_string=15 stack=5 +GoUnblock dt=72 g=28 g_seq=11 stack=0 +GoStart dt=4 g=28 g_seq=12 +GoLabel dt=1 label_string=4 +GoBlock dt=2016 reason_string=15 stack=5 +GoUnblock dt=16 g=28 g_seq=13 stack=0 +GoStart dt=7 g=28 g_seq=14 +GoLabel dt=1 label_string=2 +GoBlock dt=6712 reason_string=15 stack=5 +ProcStop dt=63 +ProcStart dt=20808 p=14 p_seq=1 +GoStart dt=205 g=89 g_seq=7 +GCMarkAssistEnd dt=10 +HeapAlloc dt=64 heapalloc_value=196245968 +GoStop dt=6073 reason_string=16 stack=6 +GoStart dt=21 g=89 g_seq=8 +GCMarkAssistBegin dt=15 stack=3 +GoBlock dt=38 reason_string=10 stack=18 +ProcStop dt=129 +ProcStart dt=13557 p=11 p_seq=7 +GoStart dt=202 g=116 g_seq=12 +GCMarkAssistEnd dt=10 +GCSweepBegin dt=25 stack=28 +GCSweepEnd dt=12 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=3 heapalloc_value=114760576 +GCSweepBegin dt=70 stack=28 +GCSweepEnd dt=5 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=1 heapalloc_value=114785152 +GCSweepBegin dt=353 stack=27 +EventBatch gen=3 m=169420 time=28114950896337 size=112 +ProcStatus dt=2 p=17 pstatus=1 +GoStatus dt=1 g=84 m=169420 gstatus=2 +GCMarkAssistActive dt=1 g=84 +GCMarkAssistEnd dt=3 +HeapAlloc dt=20 heapalloc_value=190365120 +GCMarkAssistBegin dt=42 stack=3 +GoStop dt=861 reason_string=20 stack=9 +GoStart dt=142 g=126 g_seq=1 +GoBlock dt=2538 reason_string=13 stack=11 +GoUnblock dt=1653 g=30 g_seq=1 stack=0 +GoStart dt=7 g=30 g_seq=2 +GoLabel dt=2 label_string=4 +GoBlock dt=6064 reason_string=15 stack=5 +GoUnblock dt=1633 g=25 g_seq=11 stack=0 +GoStart dt=8 g=25 g_seq=12 +GoLabel dt=1 label_string=4 +GoBlock dt=4927 reason_string=15 stack=5 +GoUnblock dt=3569 g=67 g_seq=11 stack=0 +GoStart dt=7 g=67 g_seq=12 +GoLabel dt=1 label_string=4 +GoBlock dt=1289 reason_string=15 stack=5 +GoUnblock dt=73 g=67 g_seq=13 stack=0 +GoStart dt=4 g=67 g_seq=14 +GoLabel dt=1 label_string=4 +GoBlock dt=46 reason_string=15 stack=5 +ProcStop dt=52 +EventBatch gen=3 m=169419 time=28114950898971 size=132 +ProcStatus dt=2 p=13 pstatus=1 +GoStatus dt=2 g=30 m=169419 gstatus=2 +GoBlock dt=7 reason_string=15 stack=5 +GoUnblock dt=2697 g=72 g_seq=1 stack=0 +GoStart dt=8 g=72 g_seq=2 +GoLabel dt=1 label_string=4 +GoBlock dt=969 reason_string=15 stack=5 +GoStart dt=2978 g=95 g_seq=2 +GoStatus dt=32 g=88 m=18446744073709551615 gstatus=4 +GoUnblock dt=7 g=88 g_seq=1 stack=10 +GCMarkAssistBegin dt=18 stack=3 +GoStop dt=1258 reason_string=20 stack=9 +GoStart dt=17 g=88 g_seq=2 +GoStatus dt=27 g=113 m=18446744073709551615 gstatus=4 +GoUnblock dt=5 g=113 g_seq=1 stack=10 +GCMarkAssistBegin dt=12 stack=3 +GoStop dt=1797 reason_string=20 stack=9 +GoStart dt=18 g=88 g_seq=3 +GoStop dt=2883 reason_string=20 stack=9 +GoUnblock dt=14 g=70 g_seq=7 stack=0 +GoStart dt=5 g=70 g_seq=8 +GoLabel dt=3 label_string=2 +GoBlock dt=5294 reason_string=15 stack=5 +GoStart dt=14 g=123 g_seq=5 +GoBlock dt=18 reason_string=13 stack=11 +ProcStop dt=16 +EventBatch gen=3 m=169418 time=28114950895095 size=398 +ProcStatus dt=1 p=35 pstatus=2 +ProcStart dt=2 p=35 p_seq=1 +GoStart dt=38 g=87 g_seq=1 +HeapAlloc dt=103 heapalloc_value=190086592 +GCMarkAssistBegin dt=64 stack=3 +GCMarkAssistEnd dt=3228 +HeapAlloc dt=76 heapalloc_value=190995904 +GCMarkAssistBegin dt=149 stack=3 +GoBlock dt=3823 reason_string=13 stack=11 +GoStart dt=1406 g=82 g_seq=4 +GCMarkAssistEnd dt=12 +HeapAlloc dt=82 heapalloc_value=191618496 +GCMarkAssistBegin dt=75 stack=3 +GoStop dt=4342 reason_string=20 stack=9 +GoStart dt=17 g=82 g_seq=5 +GoStop dt=987 reason_string=20 stack=9 +GoStart dt=26 g=82 g_seq=6 +GoStop dt=3601 reason_string=20 stack=9 +GoUnblock dt=14 g=58 g_seq=17 stack=0 +GoStart dt=3 g=58 g_seq=18 +GoLabel dt=3 label_string=2 +GoBlock dt=1524 reason_string=15 stack=5 +GoUnblock dt=23 g=25 g_seq=15 stack=0 +GoStart dt=8 g=25 g_seq=16 +GoLabel dt=3 label_string=2 +GoBlock dt=7942 reason_string=15 stack=5 +ProcStop dt=2920 +ProcStart dt=69 p=31 p_seq=1 +GoUnblock dt=7 g=67 g_seq=25 stack=0 +GoStart dt=5 g=67 g_seq=26 +GoLabel dt=1 label_string=4 +GoBlock dt=1990 reason_string=15 stack=5 +GoUnblock dt=110 g=67 g_seq=29 stack=0 +GoStart dt=6 g=67 g_seq=30 +GoLabel dt=1 label_string=4 +GoBlock dt=39 reason_string=15 stack=5 +GoUnblock dt=64 g=52 g_seq=29 stack=0 +GoStart dt=1 g=52 g_seq=30 +GoLabel dt=1 label_string=4 +GoBlock dt=40 reason_string=15 stack=5 +GoUnblock dt=72 g=29 g_seq=19 stack=0 +GoStart dt=7 g=29 g_seq=20 +GoLabel dt=1 label_string=4 +GoBlock dt=65 reason_string=15 stack=5 +GoUnblock dt=1007 g=23 g_seq=43 stack=0 +GoStart dt=8 g=23 g_seq=44 +GoLabel dt=1 label_string=4 +GoBlock dt=1633 reason_string=15 stack=5 +GoUnblock dt=7 g=23 g_seq=45 stack=0 +GoStart dt=160 g=23 g_seq=46 +GoLabel dt=1 label_string=2 +GoBlock dt=16 reason_string=15 stack=5 +ProcStop dt=31 +ProcStart dt=8279 p=26 p_seq=2 +GoStart dt=216 g=103 g_seq=3 +GCMarkAssistBegin dt=19 stack=3 +GoBlock dt=41 reason_string=13 stack=11 +GoUnblock dt=11 g=25 g_seq=47 stack=0 +GoStart dt=3 g=25 g_seq=48 +GoLabel dt=1 label_string=2 +GoBlock dt=1274 reason_string=15 stack=5 +ProcStop dt=46 +ProcStart dt=1294 p=26 p_seq=3 +GoStart dt=164 g=127 g_seq=6 +GoStop dt=45 reason_string=20 stack=9 +GoStart dt=17 g=127 g_seq=7 +GCMarkAssistEnd dt=1921 +GoStop dt=49 reason_string=16 stack=17 +GoUnblock dt=17 g=22 g_seq=59 stack=0 +GoStart dt=8 g=22 g_seq=60 +GoLabel dt=1 label_string=2 +GoBlock dt=75 reason_string=15 stack=5 +GoStart dt=44 g=83 g_seq=7 +GCMarkAssistEnd dt=4 +GCMarkAssistBegin dt=50 stack=3 +GCMarkAssistEnd dt=27 +HeapAlloc dt=55 heapalloc_value=193551064 +GoStop dt=47 reason_string=16 stack=4 +GoStart dt=30 g=84 g_seq=7 +HeapAlloc dt=82 heapalloc_value=193772248 +HeapAlloc dt=291 heapalloc_value=194239192 +HeapAlloc dt=198 heapalloc_value=194493144 +HeapAlloc dt=7678 heapalloc_value=196524496 +GoStop dt=18 reason_string=16 stack=6 +ProcStop dt=218 +ProcStart dt=2082 p=26 p_seq=4 +ProcStop dt=68 +ProcStart dt=16818 p=14 p_seq=2 +GoStart dt=242 g=118 g_seq=7 +GCMarkAssistEnd dt=8 +GCSweepBegin dt=32 stack=28 +GCSweepEnd dt=11 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=3 heapalloc_value=114809728 +GCSweepBegin dt=279 stack=27 +EventBatch gen=3 m=169417 time=28114950894785 size=650 +ProcStatus dt=2 p=18 pstatus=1 +GoStatus dt=2 g=120 m=169417 gstatus=2 +GCMarkAssistActive dt=1 g=120 +GCMarkAssistEnd dt=2 +HeapAlloc dt=26 heapalloc_value=189767104 +GoStop dt=131 reason_string=16 stack=4 +GoStart dt=59 g=120 g_seq=1 +HeapAlloc dt=138 heapalloc_value=190045632 +GCMarkAssistBegin dt=31 stack=3 +GCMarkAssistEnd dt=3339 +HeapAlloc dt=63 heapalloc_value=190938560 +GCMarkAssistBegin dt=150 stack=3 +GoBlock dt=270 reason_string=13 stack=11 +GoUnblock dt=4058 g=57 g_seq=3 stack=0 +GoStart dt=7 g=57 g_seq=4 +GoLabel dt=1 label_string=4 +GoBlock dt=902 reason_string=15 stack=5 +GoUnblock dt=4049 g=30 g_seq=3 stack=0 +GoStart dt=8 g=30 g_seq=4 +GoLabel dt=1 label_string=4 +GoBlock dt=521 reason_string=15 stack=5 +GoUnblock dt=1581 g=57 g_seq=17 stack=0 +GoStart dt=11 g=57 g_seq=18 +GoLabel dt=3 label_string=4 +GoBlock dt=37 reason_string=15 stack=5 +GoUnblock dt=14 g=69 g_seq=11 stack=0 +GoStart dt=4 g=69 g_seq=12 +GoLabel dt=3 label_string=2 +GoBlock dt=543 reason_string=15 stack=5 +GoUnblock dt=10 g=69 g_seq=13 stack=0 +GoStart dt=6 g=69 g_seq=14 +GoLabel dt=1 label_string=2 +GoBlock dt=1813 reason_string=15 stack=5 +ProcStop dt=2875 +ProcStart dt=28 p=18 p_seq=1 +GoUnblock dt=1296 g=54 g_seq=23 stack=0 +GoStart dt=7 g=54 g_seq=24 +GoLabel dt=1 label_string=4 +GoBlock dt=1516 reason_string=15 stack=5 +GoUnblock dt=7 g=54 g_seq=25 stack=0 +GoStart dt=5 g=54 g_seq=26 +GoLabel dt=1 label_string=2 +GoBlock dt=6851 reason_string=15 stack=5 +GoUnblock dt=71 g=72 g_seq=41 stack=0 +GoStart dt=5 g=72 g_seq=42 +GoLabel dt=1 label_string=4 +GoBlock dt=21 reason_string=15 stack=5 +GoUnblock dt=5 g=72 g_seq=43 stack=0 +GoStart dt=3 g=72 g_seq=44 +GoLabel dt=1 label_string=2 +GoBlock dt=62 reason_string=15 stack=5 +GoUnblock dt=19 g=72 g_seq=45 stack=0 +GoStart dt=4 g=72 g_seq=46 +GoLabel dt=1 label_string=2 +GoBlock dt=3727 reason_string=15 stack=5 +ProcStop dt=69 +ProcStart dt=21 p=18 p_seq=2 +GoUnblock dt=10 g=70 g_seq=15 stack=0 +GoStart dt=3 g=70 g_seq=16 +GoLabel dt=1 label_string=4 +GoBlock dt=14 reason_string=15 stack=5 +GoUnblock dt=49 g=70 g_seq=17 stack=0 +GoStart dt=3 g=70 g_seq=18 +GoLabel dt=1 label_string=4 +GoBlock dt=2314 reason_string=15 stack=5 +ProcStop dt=46 +ProcStart dt=1398 p=18 p_seq=3 +ProcStop dt=38 +ProcStart dt=4183 p=18 p_seq=4 +GoStart dt=183 g=96 g_seq=4 +GCMarkAssistEnd dt=9 +HeapAlloc dt=36 heapalloc_value=192305952 +GCMarkAssistBegin dt=28 stack=3 +GoBlock dt=1320 reason_string=13 stack=11 +GoUnblock dt=15 g=25 g_seq=45 stack=0 +GoStart dt=7 g=25 g_seq=46 +GoLabel dt=1 label_string=2 +GoBlock dt=600 reason_string=15 stack=5 +GoStart dt=13 g=89 g_seq=5 +GCMarkAssistBegin dt=11 stack=3 +GoBlock dt=112 reason_string=13 stack=11 +GoStart dt=14 g=121 g_seq=8 +GoStop dt=1488 reason_string=20 stack=9 +GoUnblock dt=16 g=25 g_seq=49 stack=0 +GoStart dt=7 g=25 g_seq=50 +GoLabel dt=2 label_string=2 +GoUnblock dt=1803 g=115 g_seq=6 stack=12 +GoUnblock dt=5 g=93 g_seq=6 stack=12 +GoUnblock dt=6 g=85 g_seq=5 stack=12 +GoUnblock dt=3 g=104 g_seq=1 stack=12 +GoUnblock dt=6 g=108 g_seq=1 stack=12 +GoUnblock dt=4 g=120 g_seq=4 stack=12 +GoUnblock dt=4 g=126 g_seq=5 stack=12 +GoUnblock dt=7 g=114 g_seq=3 stack=12 +GoUnblock dt=5 g=86 g_seq=4 stack=12 +GoUnblock dt=4 g=110 g_seq=3 stack=12 +GoBlock dt=14 reason_string=15 stack=5 +GoUnblock dt=7 g=25 g_seq=51 stack=0 +GoStart dt=1 g=25 g_seq=52 +GoLabel dt=1 label_string=2 +GoBlock dt=12 reason_string=15 stack=5 +GoStart dt=8 g=115 g_seq=7 +GCMarkAssistEnd dt=6 +HeapAlloc dt=32 heapalloc_value=192838360 +GCMarkAssistBegin dt=55 stack=3 +GoStop dt=1501 reason_string=20 stack=9 +GoUnblock dt=18 g=51 g_seq=51 stack=0 +GoStart dt=6 g=51 g_seq=52 +GoLabel dt=1 label_string=2 +GoUnblock dt=1117 g=105 g_seq=13 stack=12 +GoBlock dt=8 reason_string=15 stack=5 +GoStart dt=8 g=105 g_seq=14 +GCMarkAssistEnd dt=6 +GCMarkAssistBegin dt=27 stack=3 +GoBlock dt=13 reason_string=13 stack=11 +GoStart dt=7 g=86 g_seq=5 +GCMarkAssistEnd dt=6 +HeapAlloc dt=12 heapalloc_value=195148504 +GCMarkAssistBegin dt=65 stack=3 +HeapAlloc dt=22 heapalloc_value=195214040 +GoBlock dt=17 reason_string=10 stack=18 +GoStart dt=2881 g=124 g_seq=5 +HeapAlloc dt=35 heapalloc_value=195517144 +HeapAlloc dt=15 heapalloc_value=195566296 +HeapAlloc dt=61 heapalloc_value=195574224 +HeapAlloc dt=16 heapalloc_value=195631568 +GCMarkAssistBegin dt=23 stack=3 +GoBlock dt=34 reason_string=10 stack=18 +GoStart dt=14 g=90 g_seq=7 +GCMarkAssistEnd dt=5 +HeapAlloc dt=4 heapalloc_value=195697104 +GCMarkAssistBegin dt=58 stack=3 +GoBlock dt=15 reason_string=10 stack=18 +GoStart dt=10 g=96 g_seq=6 +GCMarkAssistEnd dt=3 +GCMarkAssistBegin dt=37 stack=3 +GoBlock dt=16 reason_string=13 stack=11 +GoStart dt=14 g=92 g_seq=5 +GCMarkAssistBegin dt=75 stack=3 +GoBlock dt=25 reason_string=10 stack=18 +GoStart dt=9 g=119 g_seq=6 +GCMarkAssistEnd dt=5 +HeapAlloc dt=20 heapalloc_value=195926480 +GCMarkAssistBegin dt=19 stack=3 +GoBlock dt=14 reason_string=10 stack=18 +GoStart dt=9 g=85 g_seq=6 +GCMarkAssistEnd dt=3 +HeapAlloc dt=38 heapalloc_value=195983824 +GoStop dt=5763 reason_string=16 stack=6 +GoStart dt=15 g=85 g_seq=7 +GCMarkAssistBegin dt=6 stack=3 +GoBlock dt=21 reason_string=10 stack=18 +ProcStop dt=46 +ProcStart dt=17429 p=15 p_seq=2 +GoStart dt=180 g=3 g_seq=2 +EventBatch gen=3 m=169416 time=28114950894874 size=516 +ProcStatus dt=2 p=26 pstatus=1 +GoStatus dt=1 g=98 m=169416 gstatus=2 +GCMarkAssistActive dt=1 g=98 +GCMarkAssistEnd dt=2 +HeapAlloc dt=136 heapalloc_value=190004672 +GoStop dt=29 reason_string=16 stack=4 +GoStart dt=29 g=86 g_seq=1 +GCMarkAssistBegin dt=75 stack=3 +GCMarkAssistEnd dt=8456 +HeapAlloc dt=48 heapalloc_value=191569344 +GoStop dt=32 reason_string=16 stack=4 +GoStart dt=19 g=86 g_seq=2 +GCMarkAssistBegin dt=73 stack=3 +GoStop dt=324 reason_string=20 stack=9 +GoStart dt=11 g=116 g_seq=3 +GoStop dt=270 reason_string=20 stack=9 +GoUnblock dt=14 g=51 g_seq=7 stack=0 +GoStart dt=4 g=51 g_seq=8 +GoLabel dt=3 label_string=2 +GoBlock dt=4139 reason_string=15 stack=5 +GoUnblock dt=9 g=51 g_seq=9 stack=0 +GoStart dt=6 g=51 g_seq=10 +GoLabel dt=1 label_string=2 +GoBlock dt=564 reason_string=15 stack=5 +GoUnblock dt=12 g=29 g_seq=7 stack=0 +GoStart dt=4 g=29 g_seq=8 +GoLabel dt=1 label_string=2 +GoBlock dt=13475 reason_string=15 stack=5 +ProcStop dt=61 +ProcStart dt=17 p=26 p_seq=1 +GoUnblock dt=6 g=53 g_seq=31 stack=0 +GoStart dt=3 g=53 g_seq=32 +GoLabel dt=1 label_string=4 +GoBlock dt=18 reason_string=15 stack=5 +GoUnblock dt=6 g=53 g_seq=33 stack=0 +GoStart dt=4 g=53 g_seq=34 +GoLabel dt=1 label_string=2 +GoBlock dt=2291 reason_string=15 stack=5 +GoUnblock dt=8 g=53 g_seq=35 stack=0 +GoStart dt=4 g=53 g_seq=36 +GoLabel dt=1 label_string=2 +GoBlock dt=32 reason_string=15 stack=5 +GoUnblock dt=68 g=29 g_seq=9 stack=0 +GoStart dt=4 g=29 g_seq=10 +GoLabel dt=1 label_string=4 +GoBlock dt=796 reason_string=15 stack=5 +GoUnblock dt=60 g=29 g_seq=11 stack=0 +GoStart dt=4 g=29 g_seq=12 +GoLabel dt=1 label_string=4 +GoBlock dt=643 reason_string=15 stack=5 +GoUnblock dt=61 g=53 g_seq=43 stack=0 +GoStart dt=4 g=53 g_seq=44 +GoLabel dt=1 label_string=4 +GoBlock dt=3485 reason_string=15 stack=5 +GoUnblock dt=10 g=53 g_seq=45 stack=0 +GoStart dt=5 g=53 g_seq=46 +GoLabel dt=1 label_string=2 +GoBlock dt=14 reason_string=15 stack=5 +ProcStop dt=38 +ProcStart dt=9443 p=0 p_seq=3 +GoStart dt=226 g=115 g_seq=5 +GoBlock dt=168 reason_string=13 stack=11 +GoUnblock dt=11 g=30 g_seq=37 stack=0 +GoStart dt=6 g=30 g_seq=38 +GoLabel dt=1 label_string=2 +GoBlock dt=67 reason_string=15 stack=5 +ProcStop dt=46 +ProcStart dt=1842 p=25 p_seq=6 +GoUnblock dt=12 g=29 g_seq=37 stack=0 +GoStart dt=5 g=29 g_seq=38 +GoLabel dt=1 label_string=2 +GoBlock dt=2260 reason_string=15 stack=5 +GoUnblock dt=16 g=29 g_seq=39 stack=0 +GoStart dt=4 g=29 g_seq=40 +GoLabel dt=1 label_string=2 +GoBlock dt=19 reason_string=15 stack=5 +GoStart dt=34 g=99 g_seq=4 +GCMarkAssistEnd dt=7 +HeapAlloc dt=55 heapalloc_value=193501912 +GoStop dt=29 reason_string=16 stack=4 +GoUnblock dt=18 g=29 g_seq=41 stack=0 +GoStart dt=7 g=29 g_seq=42 +GoLabel dt=1 label_string=2 +GoBlock dt=10 reason_string=15 stack=5 +GoUnblock dt=14 g=29 g_seq=43 stack=0 +GoStart dt=4 g=29 g_seq=44 +GoLabel dt=1 label_string=2 +GoBlock dt=40 reason_string=15 stack=5 +GoStart dt=16 g=111 g_seq=6 +GoBlock dt=37 reason_string=13 stack=11 +GoStart dt=13 g=125 g_seq=6 +GCMarkAssistBegin dt=13 stack=3 +GoBlock dt=34 reason_string=13 stack=11 +GoStart dt=23 g=115 g_seq=8 +GoBlock dt=61 reason_string=13 stack=11 +GoStart dt=27 g=120 g_seq=5 +GCMarkAssistEnd dt=12 +HeapAlloc dt=82 heapalloc_value=194067160 +GoStop dt=22 reason_string=16 stack=4 +GoStart dt=10 g=93 g_seq=7 +GCMarkAssistEnd dt=4 +HeapAlloc dt=663 heapalloc_value=194992856 +GCMarkAssistBegin dt=23 stack=3 +GoBlock dt=12 reason_string=13 stack=11 +GoStart dt=11 g=99 g_seq=7 +GCMarkAssistEnd dt=5 +HeapAlloc dt=4741 heapalloc_value=196180432 +GoStop dt=10 reason_string=16 stack=6 +GoStart dt=19 g=99 g_seq=8 +GCMarkAssistBegin dt=8 stack=3 +GoBlock dt=18 reason_string=10 stack=18 +GoStart dt=9 g=100 g_seq=4 +GCMarkAssistEnd dt=5 +HeapAlloc dt=101 heapalloc_value=196295120 +GoStop dt=6074 reason_string=16 stack=6 +GoStart dt=49 g=100 g_seq=5 +GCMarkAssistBegin dt=10 stack=3 +GoBlock dt=32 reason_string=13 stack=11 +ProcStop dt=67 +ProcStart dt=12947 p=10 p_seq=3 +GoStart dt=200 g=86 g_seq=7 +GoUnblock dt=38 g=124 g_seq=6 stack=30 +GCMarkAssistEnd dt=5 +HeapAlloc dt=90 heapalloc_value=113809792 +HeapAlloc dt=112 heapalloc_value=114160256 +GCSweepBegin dt=694 stack=31 +EventBatch gen=3 m=169415 time=28114950903030 size=633 +ProcStatus dt=1 p=28 pstatus=1 +GoStatus dt=3 g=91 m=169415 gstatus=2 +GCMarkAssistActive dt=1 g=91 +GCMarkAssistEnd dt=2 +HeapAlloc dt=29 heapalloc_value=191479232 +GCMarkAssistBegin dt=84 stack=3 +GoBlock dt=82 reason_string=13 stack=11 +GoStart dt=4920 g=113 g_seq=2 +GoStatus dt=31 g=123 m=18446744073709551615 gstatus=4 +GoUnblock dt=10 g=123 g_seq=1 stack=10 +GCMarkAssistBegin dt=14 stack=3 +GoStop dt=1855 reason_string=20 stack=9 +GoStart dt=15 g=113 g_seq=3 +GoStop dt=352 reason_string=20 stack=9 +GoStart dt=13 g=113 g_seq=4 +GoBlock dt=261 reason_string=13 stack=11 +GoUnblock dt=3404 g=52 g_seq=17 stack=0 +GoStart dt=7 g=52 g_seq=18 +GoLabel dt=1 label_string=4 +GoBlock dt=1025 reason_string=15 stack=5 +GoUnblock dt=4703 g=67 g_seq=17 stack=0 +GoStart dt=8 g=67 g_seq=18 +GoLabel dt=1 label_string=4 +GoBlock dt=1418 reason_string=15 stack=5 +GoUnblock dt=72 g=23 g_seq=29 stack=0 +GoStart dt=4 g=23 g_seq=30 +GoLabel dt=1 label_string=4 +GoBlock dt=307 reason_string=15 stack=5 +GoUnblock dt=85 g=72 g_seq=33 stack=0 +GoStart dt=5 g=72 g_seq=34 +GoLabel dt=3 label_string=4 +GoBlock dt=30 reason_string=15 stack=5 +GoStatus dt=168 g=68 m=18446744073709551615 gstatus=4 +GoUnblock dt=2 g=68 g_seq=1 stack=0 +GoStart dt=64 g=68 g_seq=2 +GoLabel dt=1 label_string=4 +GoBlock dt=55 reason_string=15 stack=5 +GoUnblock dt=10 g=68 g_seq=3 stack=0 +GoStart dt=3 g=68 g_seq=4 +GoLabel dt=2 label_string=2 +GoBlock dt=327 reason_string=15 stack=5 +ProcStop dt=80 +ProcStart dt=25 p=28 p_seq=1 +GoUnblock dt=7 g=30 g_seq=17 stack=0 +GoStart dt=4 g=30 g_seq=18 +GoLabel dt=3 label_string=4 +GoBlock dt=2630 reason_string=15 stack=5 +GoUnblock dt=28 g=72 g_seq=39 stack=0 +GoStart dt=12 g=72 g_seq=40 +GoLabel dt=1 label_string=2 +GoBlock dt=21 reason_string=15 stack=5 +GoUnblock dt=77 g=30 g_seq=19 stack=0 +GoStart dt=10 g=30 g_seq=20 +GoLabel dt=1 label_string=4 +GoBlock dt=3781 reason_string=15 stack=5 +GoUnblock dt=15 g=30 g_seq=21 stack=0 +GoStart dt=5 g=30 g_seq=22 +GoLabel dt=1 label_string=2 +GoBlock dt=2537 reason_string=15 stack=5 +GoUnblock dt=55 g=30 g_seq=23 stack=0 +GoStart dt=5 g=30 g_seq=24 +GoLabel dt=1 label_string=4 +GoBlock dt=478 reason_string=15 stack=5 +GoUnblock dt=8 g=30 g_seq=25 stack=0 +GoStart dt=4 g=30 g_seq=26 +GoLabel dt=1 label_string=2 +GoBlock dt=1039 reason_string=15 stack=5 +GoStart dt=26 g=14 g_seq=37 +GoBlock dt=1631 reason_string=15 stack=5 +GoUnblock dt=22 g=52 g_seq=43 stack=0 +GoStart dt=8 g=52 g_seq=44 +GoLabel dt=3 label_string=2 +GoBlock dt=21 reason_string=15 stack=5 +GoUnblock dt=9 g=52 g_seq=45 stack=0 +GoStart dt=3 g=52 g_seq=46 +GoLabel dt=1 label_string=2 +GoBlock dt=17 reason_string=15 stack=5 +GoUnblock dt=6 g=52 g_seq=47 stack=0 +GoStart dt=3 g=52 g_seq=48 +GoLabel dt=1 label_string=2 +GoUnblock dt=217 g=112 g_seq=3 stack=12 +GoBlock dt=298 reason_string=15 stack=5 +GoUnblock dt=8 g=52 g_seq=49 stack=0 +GoStart dt=3 g=52 g_seq=50 +GoLabel dt=1 label_string=2 +GoBlock dt=1919 reason_string=15 stack=5 +GoStart dt=16 g=121 g_seq=6 +GCMarkAssistEnd dt=6 +HeapAlloc dt=1354 heapalloc_value=192363224 +GoStop dt=25 reason_string=16 stack=4 +GoStart dt=16 g=121 g_seq=7 +GCMarkAssistBegin dt=74 stack=3 +GoStop dt=496 reason_string=20 stack=9 +GoUnblock dt=11 g=52 g_seq=55 stack=0 +GoStart dt=4 g=52 g_seq=56 +GoLabel dt=1 label_string=2 +GoUnblock dt=1666 g=94 g_seq=5 stack=12 +GoBlock dt=18 reason_string=15 stack=5 +GoUnblock dt=18 g=30 g_seq=41 stack=0 +GoStart dt=4 g=30 g_seq=42 +GoLabel dt=1 label_string=2 +GoUnblock dt=1362 g=84 g_seq=5 stack=12 +GoUnblock dt=6 g=125 g_seq=4 stack=12 +GoUnblock dt=5 g=118 g_seq=3 stack=12 +GoBlock dt=9 reason_string=15 stack=5 +GoUnblock dt=10 g=30 g_seq=43 stack=0 +GoStart dt=3 g=30 g_seq=44 +GoLabel dt=1 label_string=2 +GoBlock dt=9 reason_string=15 stack=5 +GoStart dt=6 g=84 g_seq=6 +GCMarkAssistEnd dt=5 +HeapAlloc dt=24 heapalloc_value=192748248 +GCMarkAssistBegin dt=83 stack=3 +GCMarkAssistEnd dt=1516 +HeapAlloc dt=28 heapalloc_value=193231576 +GoStop dt=27 reason_string=16 stack=6 +GoUnblock dt=14 g=22 g_seq=57 stack=0 +GoStart dt=3 g=22 g_seq=58 +GoLabel dt=1 label_string=2 +GoUnblock dt=16 g=81 g_seq=8 stack=12 +GoBlock dt=10 reason_string=15 stack=5 +GoStart dt=11 g=125 g_seq=5 +GCMarkAssistEnd dt=5 +HeapAlloc dt=16 heapalloc_value=193354456 +GoStop dt=95 reason_string=16 stack=6 +GoUnblock dt=34 g=22 g_seq=61 stack=0 +GoStart dt=1 g=22 g_seq=62 +GoLabel dt=1 label_string=2 +GoUnblock dt=1090 g=99 g_seq=6 stack=12 +GoBlock dt=10 reason_string=15 stack=5 +GoStart dt=8 g=81 g_seq=9 +GCMarkAssistEnd dt=5 +HeapAlloc dt=3528 heapalloc_value=195729872 +GoStop dt=10 reason_string=16 stack=6 +GoStart dt=17 g=81 g_seq=10 +GCMarkAssistBegin dt=9 stack=3 +GoBlock dt=34 reason_string=10 stack=18 +GoStart dt=20 g=121 g_seq=11 +GCMarkAssistEnd dt=4 +HeapAlloc dt=44 heapalloc_value=195852752 +GoStop dt=7425 reason_string=16 stack=6 +ProcStop dt=134 +ProcStart dt=14156 p=12 p_seq=2 +GoStart dt=200 g=84 g_seq=10 +GCMarkAssistEnd dt=6 +GCSweepBegin dt=35 stack=27 +EventBatch gen=3 m=169414 time=28114950903409 size=415 +ProcStatus dt=1 p=19 pstatus=1 +GoStatus dt=1 g=54 m=169414 gstatus=2 +GoBlock dt=7 reason_string=15 stack=5 +GoUnblock dt=2586 g=25 g_seq=5 stack=0 +GoStart dt=8 g=25 g_seq=6 +GoLabel dt=1 label_string=4 +GoBlock dt=2605 reason_string=15 stack=5 +GoUnblock dt=1216 g=71 g_seq=3 stack=0 +GoStart dt=7 g=71 g_seq=4 +GoLabel dt=1 label_string=4 +GoBlock dt=672 reason_string=15 stack=5 +GoUnblock dt=7231 g=23 g_seq=15 stack=0 +GoStart dt=8 g=23 g_seq=16 +GoLabel dt=1 label_string=4 +GoBlock dt=1212 reason_string=15 stack=5 +GoUnblock dt=11 g=23 g_seq=17 stack=0 +GoStart dt=7 g=23 g_seq=18 +GoLabel dt=3 label_string=2 +GoBlock dt=82 reason_string=15 stack=5 +GoUnblock dt=9 g=23 g_seq=19 stack=0 +GoStart dt=6 g=23 g_seq=20 +GoLabel dt=1 label_string=2 +GoBlock dt=162 reason_string=15 stack=5 +ProcStop dt=99 +ProcStart dt=3257 p=19 p_seq=1 +GoUnblock dt=13 g=68 g_seq=5 stack=0 +GoStart dt=10 g=68 g_seq=6 +GoLabel dt=1 label_string=2 +GoBlock dt=43 reason_string=15 stack=5 +GoUnblock dt=12 g=68 g_seq=7 stack=0 +GoStart dt=2 g=68 g_seq=8 +GoLabel dt=1 label_string=2 +GoBlock dt=133 reason_string=15 stack=5 +GoUnblock dt=23 g=58 g_seq=23 stack=0 +GoStart dt=6 g=58 g_seq=24 +GoLabel dt=1 label_string=2 +GoBlock dt=2822 reason_string=15 stack=5 +GoUnblock dt=11 g=69 g_seq=21 stack=0 +GoStart dt=7 g=69 g_seq=22 +GoLabel dt=2 label_string=2 +GoBlock dt=25 reason_string=15 stack=5 +GoUnblock dt=2937 g=58 g_seq=31 stack=0 +GoStart dt=6 g=58 g_seq=32 +GoLabel dt=1 label_string=4 +GoBlock dt=20 reason_string=15 stack=5 +ProcStop dt=60 +ProcStart dt=31 p=19 p_seq=2 +GoUnblock dt=9 g=56 g_seq=7 stack=0 +GoStart dt=6 g=56 g_seq=8 +GoLabel dt=3 label_string=4 +GoBlock dt=949 reason_string=15 stack=5 +ProcStop dt=41 +ProcStart dt=433 p=19 p_seq=3 +ProcStop dt=43 +ProcStart dt=9942 p=11 p_seq=4 +ProcStop dt=50 +ProcStart dt=2351 p=22 p_seq=6 +GoUnblock dt=15 g=30 g_seq=45 stack=0 +GoStart dt=205 g=30 g_seq=46 +GoLabel dt=1 label_string=2 +GoUnblock dt=145 g=113 g_seq=7 stack=12 +GoBlock dt=21 reason_string=15 stack=5 +GoStart dt=10 g=113 g_seq=8 +GCMarkAssistEnd dt=8 +HeapAlloc dt=48 heapalloc_value=192895704 +GCMarkAssistBegin dt=118 stack=3 +GCMarkAssistEnd dt=272 +HeapAlloc dt=20 heapalloc_value=192936664 +HeapAlloc dt=89 heapalloc_value=192953048 +HeapAlloc dt=41 heapalloc_value=192994008 +HeapAlloc dt=92 heapalloc_value=193059544 +HeapAlloc dt=102 heapalloc_value=193108696 +HeapAlloc dt=94 heapalloc_value=193133272 +HeapAlloc dt=42 heapalloc_value=193141464 +HeapAlloc dt=31 heapalloc_value=193207000 +GCMarkAssistBegin dt=142 stack=3 +GoBlock dt=114 reason_string=13 stack=11 +GoStart dt=179 g=109 g_seq=5 +GCMarkAssistEnd dt=8 +GCMarkAssistBegin dt=54 stack=3 +GCMarkAssistEnd dt=720 +HeapAlloc dt=23 heapalloc_value=194427608 +HeapAlloc dt=456 heapalloc_value=195001048 +GCMarkAssistBegin dt=18 stack=3 +GoBlock dt=22 reason_string=13 stack=11 +GoStart dt=23 g=113 g_seq=10 +GCMarkAssistEnd dt=3 +HeapAlloc dt=54 heapalloc_value=195099352 +GoStop dt=6390 reason_string=16 stack=6 +GoStart dt=23 g=113 g_seq=11 +GCMarkAssistBegin dt=6 stack=3 +GoBlock dt=21 reason_string=10 stack=18 +GoStart dt=33 g=101 g_seq=6 +GCMarkAssistEnd dt=6 +HeapAlloc dt=29 heapalloc_value=196409808 +GCMarkAssistBegin dt=22 stack=3 +GoBlock dt=52 reason_string=10 stack=18 +ProcStop dt=102 +EventBatch gen=3 m=169413 time=28114950897164 size=752 +ProcStatus dt=1 p=0 pstatus=1 +GoStatus dt=6 g=67 m=169413 gstatus=2 +GoBlock dt=11 reason_string=15 stack=5 +GoUnblock dt=18 g=25 g_seq=1 stack=0 +GoStart dt=7 g=25 g_seq=2 +GoLabel dt=1 label_string=2 +GoBlock dt=1315 reason_string=15 stack=5 +GoUnblock dt=11 g=25 g_seq=3 stack=0 +GoStart dt=6 g=25 g_seq=4 +GoLabel dt=1 label_string=2 +GoUnblock dt=4173 g=106 g_seq=1 stack=12 +GoBlock dt=1258 reason_string=15 stack=5 +GoUnblock dt=4804 g=30 g_seq=5 stack=0 +GoStart dt=7 g=30 g_seq=6 +GoLabel dt=1 label_string=4 +GoBlock dt=541 reason_string=15 stack=5 +GoUnblock dt=30 g=30 g_seq=7 stack=0 +GoStart dt=6 g=30 g_seq=8 +GoLabel dt=3 label_string=2 +GoBlock dt=3873 reason_string=15 stack=5 +GoUnblock dt=10 g=30 g_seq=9 stack=0 +GoStart dt=5 g=30 g_seq=10 +GoLabel dt=3 label_string=2 +GoBlock dt=3107 reason_string=15 stack=5 +GoUnblock dt=3672 g=14 g_seq=15 stack=0 +GoStart dt=6 g=14 g_seq=16 +GoLabel dt=1 label_string=4 +GoBlock dt=442 reason_string=15 stack=5 +GoStart dt=32 g=83 g_seq=4 +GCMarkAssistEnd dt=7 +HeapAlloc dt=49 heapalloc_value=191962560 +GCMarkAssistBegin dt=108 stack=3 +GoStop dt=885 reason_string=20 stack=9 +GoStart dt=14 g=83 g_seq=5 +GoBlock dt=21 reason_string=13 stack=11 +ProcStop dt=93 +ProcStart dt=38 p=0 p_seq=1 +GoUnblock dt=7 g=53 g_seq=17 stack=0 +GoStart dt=2 g=53 g_seq=18 +GoLabel dt=1 label_string=4 +GoBlock dt=31 reason_string=15 stack=5 +ProcStop dt=89 +ProcStart dt=45 p=11 p_seq=3 +GoUnblock dt=6 g=23 g_seq=35 stack=0 +GoStart dt=14 g=23 g_seq=36 +GoLabel dt=3 label_string=4 +GoBlock dt=2881 reason_string=15 stack=5 +GoUnblock dt=72 g=25 g_seq=17 stack=0 +GoStart dt=6 g=25 g_seq=18 +GoLabel dt=1 label_string=4 +GoBlock dt=19 reason_string=15 stack=5 +GoUnblock dt=58 g=25 g_seq=19 stack=0 +GoStart dt=3 g=25 g_seq=20 +GoLabel dt=1 label_string=4 +GoBlock dt=13 reason_string=15 stack=5 +GoStart dt=16 g=94 g_seq=4 +GoBlock dt=356 reason_string=13 stack=11 +GoUnblock dt=80 g=52 g_seq=27 stack=0 +GoStart dt=9 g=52 g_seq=28 +GoLabel dt=1 label_string=4 +GoBlock dt=2325 reason_string=15 stack=5 +GoUnblock dt=57 g=67 g_seq=31 stack=0 +GoStart dt=4 g=67 g_seq=32 +GoLabel dt=1 label_string=4 +GoBlock dt=2043 reason_string=15 stack=5 +GoUnblock dt=9 g=67 g_seq=33 stack=0 +GoStart dt=171 g=67 g_seq=34 +GoLabel dt=5 label_string=2 +GoBlock dt=21 reason_string=15 stack=5 +ProcStop dt=60 +ProcStart dt=1735 p=25 p_seq=4 +GoUnblock dt=61 g=22 g_seq=39 stack=0 +GoStart dt=178 g=22 g_seq=40 +GoLabel dt=1 label_string=4 +GoBlock dt=66 reason_string=15 stack=5 +GoUnblock dt=8 g=22 g_seq=41 stack=0 +GoStart dt=4 g=22 g_seq=42 +GoLabel dt=1 label_string=2 +GoBlock dt=975 reason_string=15 stack=5 +ProcStop dt=1192 +ProcStart dt=347 p=25 p_seq=5 +GoUnblock dt=11 g=131 g_seq=6 stack=0 +GoStart dt=145 g=131 g_seq=7 +GoBlock dt=21 reason_string=15 stack=2 +GoUnblock dt=30 g=14 g_seq=38 stack=0 +GoStart dt=4 g=14 g_seq=39 +GoLabel dt=1 label_string=2 +GoBlock dt=65 reason_string=15 stack=5 +GoStart dt=26 g=130 g_seq=1 +ProcStatus dt=380 p=38 pstatus=2 +ProcStatus dt=4 p=39 pstatus=2 +ProcStatus dt=4 p=40 pstatus=2 +ProcStatus dt=3 p=41 pstatus=2 +ProcStatus dt=5 p=42 pstatus=2 +ProcStatus dt=5 p=43 pstatus=2 +ProcStatus dt=2 p=44 pstatus=2 +ProcStatus dt=3 p=45 pstatus=2 +ProcStatus dt=4 p=46 pstatus=2 +GoStop dt=1488 reason_string=16 stack=15 +GoUnblock dt=17 g=51 g_seq=45 stack=0 +GoStart dt=3 g=51 g_seq=46 +GoLabel dt=3 label_string=2 +GoBlock dt=1337 reason_string=15 stack=5 +GoStart dt=13 g=81 g_seq=7 +GCMarkAssistEnd dt=6 +GCMarkAssistBegin dt=31 stack=3 +GoBlock dt=20 reason_string=13 stack=11 +GoStart dt=5 g=130 g_seq=2 +HeapAlloc dt=98 heapalloc_value=192314072 +GoBlock dt=348 reason_string=12 stack=16 +GoStart dt=31 g=103 g_seq=2 +GCMarkAssistEnd dt=7 +HeapAlloc dt=53 heapalloc_value=192428760 +GoStop dt=173 reason_string=16 stack=6 +GoUnblock dt=18 g=71 g_seq=29 stack=0 +GoStart dt=4 g=71 g_seq=30 +GoLabel dt=3 label_string=2 +GoBlock dt=1289 reason_string=15 stack=5 +GoStart dt=17 g=126 g_seq=4 +GCMarkAssistBegin dt=125 stack=3 +GoBlock dt=23 reason_string=13 stack=11 +ProcStop dt=76 +ProcStart dt=2523 p=0 p_seq=4 +GoUnblock dt=16 g=30 g_seq=47 stack=0 +GoStart dt=196 g=30 g_seq=48 +GoLabel dt=2 label_string=2 +GoUnblock dt=1834 g=125 g_seq=7 stack=12 +GoBlock dt=17 reason_string=15 stack=5 +GoStart dt=14 g=125 g_seq=8 +GCMarkAssistEnd dt=5 +HeapAlloc dt=69 heapalloc_value=194566872 +GoStop dt=2253 reason_string=16 stack=6 +GoStart dt=2080 g=125 g_seq=9 +GCMarkAssistBegin dt=14 stack=3 +GoBlock dt=41 reason_string=10 stack=18 +GoStart dt=13 g=106 g_seq=8 +GCMarkAssistEnd dt=6 +HeapAlloc dt=53 heapalloc_value=196106704 +GoStop dt=6900 reason_string=16 stack=6 +GoStart dt=57 g=121 g_seq=12 +GCMarkAssistBegin dt=16 stack=3 +GoBlock dt=47 reason_string=10 stack=18 +ProcStop dt=83 +ProcStart dt=11930 p=7 p_seq=7 +GoStart dt=191 g=96 g_seq=8 +GCMarkAssistEnd dt=10 +HeapAlloc dt=59 heapalloc_value=109727392 +HeapAlloc dt=159 heapalloc_value=110336128 +HeapAlloc dt=109 heapalloc_value=110662528 +GCSweepBegin dt=144 stack=28 +GCSweepEnd dt=18 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=3 heapalloc_value=111288448 +GCSweepBegin dt=49 stack=28 +GCSweepEnd dt=14 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=5 heapalloc_value=111591296 +HeapAlloc dt=65 heapalloc_value=111888256 +HeapAlloc dt=228 heapalloc_value=112797056 +HeapAlloc dt=134 heapalloc_value=113322880 +HeapAlloc dt=83 heapalloc_value=113549696 +GCSweepBegin dt=35 stack=28 +GCSweepEnd dt=16 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=3 heapalloc_value=113842560 +HeapAlloc dt=75 heapalloc_value=114080128 +HeapAlloc dt=64 heapalloc_value=114307712 +HeapAlloc dt=134 heapalloc_value=114580608 +HeapAlloc dt=77 heapalloc_value=114670464 +GCSweepBegin dt=33 stack=28 +GCSweepEnd dt=6 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=3 heapalloc_value=114727808 +GCSweepBegin dt=90 stack=27 +EventBatch gen=3 m=169412 time=28114950898429 size=583 +ProcStatus dt=1 p=36 pstatus=2 +ProcStart dt=2 p=36 p_seq=1 +GoStart dt=401 g=83 g_seq=2 +GoBlock dt=1477 reason_string=13 stack=11 +GoStart dt=1208 g=81 g_seq=2 +GCMarkAssistEnd dt=9 +HeapAlloc dt=57 heapalloc_value=191348160 +GoStop dt=42 reason_string=16 stack=4 +GoStart dt=25 g=81 g_seq=3 +GCMarkAssistBegin dt=394 stack=3 +GoBlock dt=1177 reason_string=13 stack=11 +GoStart dt=28 g=106 g_seq=2 +GCMarkAssistEnd dt=10 +HeapAlloc dt=52 heapalloc_value=191503808 +GCMarkAssistBegin dt=52 stack=3 +GoStop dt=60 reason_string=20 stack=9 +GoUnblock dt=73 g=58 g_seq=3 stack=0 +GoStart dt=6 g=58 g_seq=4 +GoLabel dt=3 label_string=4 +GoBlock dt=2860 reason_string=15 stack=5 +GoUnblock dt=3777 g=24 g_seq=9 stack=0 +GoStart dt=6 g=24 g_seq=10 +GoLabel dt=1 label_string=4 +GoBlock dt=41 reason_string=15 stack=5 +GoUnblock dt=1167 g=71 g_seq=9 stack=0 +GoStart dt=7 g=71 g_seq=10 +GoLabel dt=1 label_string=4 +GoBlock dt=1396 reason_string=15 stack=5 +GoUnblock dt=1371 g=57 g_seq=23 stack=0 +GoStart dt=7 g=57 g_seq=24 +GoLabel dt=1 label_string=4 +GoBlock dt=584 reason_string=15 stack=5 +GoUnblock dt=4657 g=23 g_seq=23 stack=0 +GoStart dt=7 g=23 g_seq=24 +GoLabel dt=1 label_string=4 +GoBlock dt=40 reason_string=15 stack=5 +ProcStop dt=82 +ProcStart dt=1505 p=36 p_seq=2 +ProcStop dt=74 +ProcStart dt=19 p=36 p_seq=3 +GoUnblock dt=7 g=23 g_seq=27 stack=0 +GoStart dt=7 g=23 g_seq=28 +GoLabel dt=1 label_string=4 +GoBlock dt=122 reason_string=15 stack=5 +GoUnblock dt=58 g=52 g_seq=25 stack=0 +GoStart dt=6 g=52 g_seq=26 +GoLabel dt=1 label_string=4 +GoBlock dt=4034 reason_string=15 stack=5 +GoUnblock dt=75 g=14 g_seq=19 stack=0 +GoStart dt=6 g=14 g_seq=20 +GoLabel dt=1 label_string=4 +GoBlock dt=2059 reason_string=15 stack=5 +GoUnblock dt=63 g=14 g_seq=21 stack=0 +GoStart dt=4 g=14 g_seq=22 +GoLabel dt=1 label_string=4 +GoBlock dt=56 reason_string=15 stack=5 +ProcStop dt=49 +ProcStart dt=20 p=36 p_seq=4 +GoUnblock dt=6 g=67 g_seq=27 stack=0 +GoStart dt=2 g=67 g_seq=28 +GoLabel dt=1 label_string=4 +GoBlock dt=13 reason_string=15 stack=5 +ProcStop dt=1721 +ProcStart dt=20316 p=36 p_seq=5 +GoStart dt=197 g=94 g_seq=11 +GCMarkAssistEnd dt=7 +HeapAlloc dt=6672 heapalloc_value=196598224 +GoStop dt=15 reason_string=16 stack=6 +GoStart dt=54 g=106 g_seq=9 +GCMarkAssistBegin dt=16 stack=3 +GoBlock dt=32 reason_string=10 stack=18 +GoStart dt=41 g=103 g_seq=6 +GCMarkAssistBegin dt=15 stack=3 +GoBlock dt=84 reason_string=10 stack=18 +ProcStop dt=43 +ProcStart dt=10888 p=5 p_seq=1 +GoStart dt=189 g=120 g_seq=8 +GCMarkAssistEnd dt=7 +HeapAlloc dt=54 heapalloc_value=106433440 +HeapAlloc dt=94 heapalloc_value=106861728 +GCSweepBegin dt=92 stack=28 +GCSweepEnd dt=13 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=4 heapalloc_value=107301920 +HeapAlloc dt=65 heapalloc_value=107394848 +GCSweepBegin dt=32 stack=28 +GCSweepEnd dt=11 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=2 heapalloc_value=107616032 +HeapAlloc dt=60 heapalloc_value=107763488 +HeapAlloc dt=78 heapalloc_value=107953440 +HeapAlloc dt=65 heapalloc_value=108333088 +GCSweepBegin dt=38 stack=28 +GCSweepEnd dt=5 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=1 heapalloc_value=108423200 +GCSweepBegin dt=80 stack=28 +GCSweepEnd dt=9 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=3 heapalloc_value=108682656 +GCSweepBegin dt=61 stack=28 +GCSweepEnd dt=10 swept_value=8192 reclaimed_value=8192 +HeapAlloc dt=4 heapalloc_value=108816544 +HeapAlloc dt=32 heapalloc_value=108994080 +HeapAlloc dt=50 heapalloc_value=109290272 +HeapAlloc dt=112 heapalloc_value=109566240 +HeapAlloc dt=104 heapalloc_value=109973280 +GCSweepBegin dt=66 stack=29 +GCSweepEnd dt=17 swept_value=8192 reclaimed_value=0 +HeapAlloc dt=3 heapalloc_value=110183040 +HeapAlloc dt=86 heapalloc_value=110506880 +HeapAlloc dt=149 heapalloc_value=111151232 +HeapAlloc dt=24 heapalloc_value=111272064 +HeapAlloc dt=53 heapalloc_value=111368064 +HeapAlloc dt=68 heapalloc_value=111632256 +HeapAlloc dt=103 heapalloc_value=112078720 +GCSweepBegin dt=120 stack=28 +GCSweepEnd dt=7 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=3 heapalloc_value=112585472 +HeapAlloc dt=34 heapalloc_value=112616832 +HeapAlloc dt=39 heapalloc_value=112882304 +HeapAlloc dt=141 heapalloc_value=113391232 +HeapAlloc dt=80 heapalloc_value=113664384 +HeapAlloc dt=152 heapalloc_value=114242176 +HeapAlloc dt=104 heapalloc_value=114415616 +HeapAlloc dt=38 heapalloc_value=114527360 +HeapAlloc dt=28 heapalloc_value=114592896 +GCSweepBegin dt=227 stack=27 +EventBatch gen=3 m=169411 time=28114950895719 size=370 +ProcStatus dt=1 p=21 pstatus=1 +GoStatus dt=5 g=85 m=169411 gstatus=2 +GCMarkAssistActive dt=1 g=85 +GCMarkAssistEnd dt=3 +HeapAlloc dt=44 heapalloc_value=190299584 +GoStop dt=38 reason_string=16 stack=4 +GoStart dt=20 g=85 g_seq=1 +GCMarkAssistBegin dt=119 stack=3 +GoStop dt=4468 reason_string=20 stack=9 +GoStart dt=15 g=85 g_seq=2 +GoStop dt=1589 reason_string=20 stack=9 +GoStart dt=8 g=85 g_seq=3 +GCMarkAssistEnd dt=2892 +HeapAlloc dt=33 heapalloc_value=191733184 +GCMarkAssistBegin dt=98 stack=3 +GoStop dt=2309 reason_string=20 stack=9 +GoStart dt=10 g=95 g_seq=3 +GoBlock dt=153 reason_string=13 stack=11 +GoStart dt=5 g=85 g_seq=4 +GoBlock dt=18 reason_string=13 stack=11 +GoUnblock dt=3925 g=58 g_seq=13 stack=0 +GoStart dt=8 g=58 g_seq=14 +GoLabel dt=3 label_string=4 +GoBlock dt=106 reason_string=15 stack=5 +ProcStop dt=1275 +ProcStart dt=21 p=21 p_seq=1 +ProcStop dt=1335 +ProcStart dt=14 p=21 p_seq=2 +GoUnblock dt=1349 g=14 g_seq=9 stack=0 +GoStart dt=8 g=14 g_seq=10 +GoLabel dt=1 label_string=4 +GoBlock dt=255 reason_string=15 stack=5 +GoUnblock dt=2226 g=70 g_seq=9 stack=0 +GoStart dt=8 g=70 g_seq=10 +GoLabel dt=1 label_string=4 +GoBlock dt=398 reason_string=15 stack=5 +GoUnblock dt=8 g=70 g_seq=11 stack=0 +GoStart dt=6 g=70 g_seq=12 +GoLabel dt=1 label_string=2 +GoBlock dt=8210 reason_string=15 stack=5 +GoUnblock dt=12 g=70 g_seq=13 stack=0 +GoStart dt=5 g=70 g_seq=14 +GoLabel dt=2 label_string=2 +GoBlock dt=2354 reason_string=15 stack=5 +GoUnblock dt=93 g=72 g_seq=47 stack=0 +GoStart dt=9 g=72 g_seq=48 +GoLabel dt=1 label_string=4 +GoBlock dt=27 reason_string=15 stack=5 +GoUnblock dt=220 g=72 g_seq=49 stack=0 +GoStart dt=7 g=72 g_seq=50 +GoLabel dt=1 label_string=2 +GoBlock dt=20 reason_string=15 stack=5 +ProcStop dt=61 +ProcStart dt=16474 p=33 p_seq=2 +GoStart dt=3475 g=107 g_seq=4 +GCMarkAssistEnd dt=9 +HeapAlloc dt=52 heapalloc_value=196041168 +GoStop dt=5585 reason_string=16 stack=6 +GoStart dt=15 g=107 g_seq=5 +GCMarkAssistBegin dt=91 stack=3 +GoBlock dt=34 reason_string=10 stack=18 +ProcStop dt=55 +ProcStart dt=1514 p=33 p_seq=3 +ProcStop dt=41 +ProcStart dt=12390 p=8 p_seq=1 +GoStart dt=166 g=100 g_seq=7 +GCMarkAssistEnd dt=5 +HeapAlloc dt=51 heapalloc_value=111353984 +GCSweepBegin dt=133 stack=28 +GCSweepEnd dt=18 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=3 heapalloc_value=112029568 +HeapAlloc dt=68 heapalloc_value=112301312 +HeapAlloc dt=120 heapalloc_value=112739712 +HeapAlloc dt=116 heapalloc_value=113221760 +HeapAlloc dt=53 heapalloc_value=113380224 +HeapAlloc dt=115 heapalloc_value=113768832 +HeapAlloc dt=66 heapalloc_value=114026880 +HeapAlloc dt=127 heapalloc_value=114403328 +GCSweepBegin dt=47 stack=28 +GCSweepEnd dt=10 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=3 heapalloc_value=114503936 +HeapAlloc dt=67 heapalloc_value=114651264 +GCSweepBegin dt=299 stack=27 +EventBatch gen=3 m=169409 time=28114950894853 size=224 +ProcStatus dt=2 p=29 pstatus=1 +GoStatus dt=3 g=126 m=169409 gstatus=2 +HeapAlloc dt=3 heapalloc_value=189824448 +GCMarkAssistBegin dt=163 stack=3 +GoStop dt=1609 reason_string=20 stack=9 +GoStart dt=26 g=98 g_seq=2 +GCMarkAssistBegin dt=17 stack=3 +GCMarkAssistEnd dt=7751 +HeapAlloc dt=77 heapalloc_value=191675840 +GoStop dt=39 reason_string=16 stack=6 +GoStart dt=20 g=116 g_seq=4 +GoBlock dt=302 reason_string=13 stack=11 +GoUnblock dt=4886 g=51 g_seq=13 stack=0 +GoStart dt=8 g=51 g_seq=14 +GoLabel dt=1 label_string=4 +GoBlock dt=2058 reason_string=15 stack=5 +GoUnblock dt=11 g=51 g_seq=15 stack=0 +GoStart dt=6 g=51 g_seq=16 +GoLabel dt=3 label_string=2 +GoBlock dt=2936 reason_string=15 stack=5 +GoUnblock dt=35 g=58 g_seq=21 stack=0 +GoStart dt=6 g=58 g_seq=22 +GoLabel dt=3 label_string=2 +GoBlock dt=7995 reason_string=15 stack=5 +GoUnblock dt=20 g=68 g_seq=9 stack=0 +GoStart dt=6 g=68 g_seq=10 +GoLabel dt=3 label_string=2 +GoBlock dt=92 reason_string=15 stack=5 +GoUnblock dt=8 g=68 g_seq=11 stack=0 +GoStart dt=1 g=68 g_seq=12 +GoLabel dt=1 label_string=2 +GoBlock dt=7039 reason_string=15 stack=5 +ProcStop dt=54 +ProcStart dt=14204 p=3 p_seq=1 +GoStart dt=213 g=94 g_seq=7 +GCMarkAssistBegin dt=29 stack=3 +GoBlock dt=62 reason_string=13 stack=11 +GoStart dt=20 g=124 g_seq=4 +GCMarkAssistEnd dt=6 +GCMarkAssistBegin dt=38 stack=3 +GCMarkAssistEnd dt=98 +HeapAlloc dt=118 heapalloc_value=193911512 +HeapAlloc dt=123 heapalloc_value=194116312 +HeapAlloc dt=352 heapalloc_value=194616024 +GoStop dt=3095 reason_string=16 stack=6 +GoStart dt=26 g=110 g_seq=4 +GCMarkAssistEnd dt=6 +HeapAlloc dt=30 heapalloc_value=195508952 +GoStop dt=4300 reason_string=16 stack=6 +GoStart dt=65 g=110 g_seq=5 +GCMarkAssistBegin dt=10 stack=3 +GoBlock dt=46 reason_string=10 stack=18 +ProcStop dt=124 +EventBatch gen=3 m=169408 time=28114950896863 size=856 +ProcStatus dt=1 p=22 pstatus=1 +GoStatus dt=2 g=105 m=169408 gstatus=2 +GCMarkAssistActive dt=1 g=105 +GCMarkAssistEnd dt=2 +HeapAlloc dt=22 heapalloc_value=190512576 +HeapAlloc dt=94 heapalloc_value=190537152 +GCMarkAssistBegin dt=18 stack=3 +GCMarkAssistEnd dt=1243 +HeapAlloc dt=34 heapalloc_value=190741952 +GCMarkAssistBegin dt=36 stack=3 +GCMarkAssistEnd dt=4423 +HeapAlloc dt=22 heapalloc_value=191413696 +GoStop dt=23 reason_string=16 stack=4 +GoStart dt=15 g=105 g_seq=1 +GCMarkAssistBegin dt=57 stack=3 +GoStop dt=662 reason_string=20 stack=9 +GoStart dt=12 g=105 g_seq=2 +GoStop dt=4139 reason_string=20 stack=9 +GoStart dt=11 g=105 g_seq=3 +GoStop dt=4306 reason_string=20 stack=9 +GoStart dt=15 g=105 g_seq=4 +GoBlock dt=21 reason_string=13 stack=11 +GoUnblock dt=2669 g=58 g_seq=19 stack=0 +GoStart dt=5 g=58 g_seq=20 +GoLabel dt=1 label_string=4 +GoBlock dt=90 reason_string=15 stack=5 +GoUnblock dt=28 g=51 g_seq=17 stack=0 +GoStart dt=5 g=51 g_seq=18 +GoLabel dt=1 label_string=2 +GoBlock dt=5245 reason_string=15 stack=5 +GoUnblock dt=68 g=51 g_seq=19 stack=0 +GoStart dt=8 g=51 g_seq=20 +GoLabel dt=1 label_string=4 +GoBlock dt=14 reason_string=15 stack=5 +GoUnblock dt=6 g=51 g_seq=21 stack=0 +GoStart dt=1 g=51 g_seq=22 +GoLabel dt=1 label_string=2 +GoBlock dt=7035 reason_string=15 stack=5 +GoUnblock dt=13 g=51 g_seq=23 stack=0 +GoStart dt=4 g=51 g_seq=24 +GoLabel dt=2 label_string=2 +GoUnblock dt=188 g=116 g_seq=5 stack=12 +GoBlock dt=65 reason_string=15 stack=5 +GoUnblock dt=9 g=51 g_seq=25 stack=0 +GoStart dt=2 g=51 g_seq=26 +GoLabel dt=1 label_string=2 +GoBlock dt=170 reason_string=15 stack=5 +GoUnblock dt=15 g=51 g_seq=27 stack=0 +GoStart dt=6 g=51 g_seq=28 +GoLabel dt=1 label_string=2 +GoBlock dt=33 reason_string=15 stack=5 +GoUnblock dt=7 g=51 g_seq=29 stack=0 +GoStart dt=6 g=51 g_seq=30 +GoLabel dt=1 label_string=2 +GoBlock dt=159 reason_string=15 stack=5 +GoUnblock dt=8 g=51 g_seq=31 stack=0 +GoStart dt=3 g=51 g_seq=32 +GoLabel dt=1 label_string=2 +GoBlock dt=124 reason_string=15 stack=5 +ProcStop dt=79 +ProcStart dt=18 p=22 p_seq=1 +GoUnblock dt=4 g=29 g_seq=21 stack=0 +GoStart dt=4 g=29 g_seq=22 +GoLabel dt=1 label_string=4 +GoBlock dt=28 reason_string=15 stack=5 +ProcStop dt=45 +ProcStart dt=12 p=22 p_seq=2 +GoUnblock dt=2 g=29 g_seq=23 stack=0 +GoStart dt=1 g=29 g_seq=24 +GoLabel dt=1 label_string=4 +GoBlock dt=19 reason_string=15 stack=5 +GoUnblock dt=45 g=29 g_seq=25 stack=0 +GoStart dt=1 g=29 g_seq=26 +GoLabel dt=1 label_string=4 +GoBlock dt=151 reason_string=15 stack=5 +GoUnblock dt=14 g=52 g_seq=35 stack=0 +GoStart dt=6 g=52 g_seq=36 +GoLabel dt=1 label_string=2 +GoBlock dt=13 reason_string=15 stack=5 +GoUnblock dt=4 g=52 g_seq=37 stack=0 +GoStart dt=3 g=52 g_seq=38 +GoLabel dt=1 label_string=2 +GoBlock dt=127 reason_string=15 stack=5 +GoUnblock dt=7 g=52 g_seq=39 stack=0 +GoStart dt=1 g=52 g_seq=40 +GoLabel dt=1 label_string=2 +GoBlock dt=11 reason_string=15 stack=5 +GoUnblock dt=6 g=52 g_seq=41 stack=0 +GoStart dt=2 g=52 g_seq=42 +GoLabel dt=1 label_string=2 +GoBlock dt=4594 reason_string=15 stack=5 +ProcStop dt=42 +ProcStart dt=1703 p=27 p_seq=42 +GoUnblock dt=17 g=22 g_seq=45 stack=0 +GoStart dt=283 g=22 g_seq=46 +GoLabel dt=2 label_string=2 +GoUnblock dt=103 g=96 g_seq=3 stack=12 +GoUnblock dt=95 g=121 g_seq=5 stack=12 +GoUnblock dt=5 g=126 g_seq=2 stack=12 +GoUnblock dt=529 g=115 g_seq=3 stack=12 +GoBlock dt=552 reason_string=15 stack=5 +GoUnblock dt=31 g=22 g_seq=47 stack=0 +GoStart dt=4 g=22 g_seq=48 +GoLabel dt=1 label_string=2 +GoUnblock dt=763 g=90 g_seq=3 stack=12 +GoBlock dt=39 reason_string=15 stack=5 +GoUnblock dt=12 g=22 g_seq=49 stack=0 +GoStart dt=4 g=22 g_seq=50 +GoLabel dt=1 label_string=2 +GoBlock dt=806 reason_string=15 stack=5 +GoStart dt=18 g=115 g_seq=4 +GCMarkAssistEnd dt=8 +HeapAlloc dt=834 heapalloc_value=192494296 +GCMarkAssistBegin dt=33 stack=3 +GoStop dt=622 reason_string=20 stack=9 +GoUnblock dt=15 g=14 g_seq=44 stack=0 +GoStart dt=5 g=14 g_seq=45 +GoLabel dt=1 label_string=2 +GoBlock dt=1768 reason_string=15 stack=5 +GoUnblock dt=11 g=14 g_seq=46 stack=0 +GoStart dt=4 g=14 g_seq=47 +GoLabel dt=1 label_string=2 +GoBlock dt=20 reason_string=15 stack=5 +GoUnblock dt=10 g=14 g_seq=48 stack=0 +GoStart dt=636 g=14 g_seq=49 +GoLabel dt=1 label_string=2 +GoBlock dt=55 reason_string=15 stack=5 +GoUnblock dt=18 g=14 g_seq=50 stack=0 +GoStart dt=3 g=14 g_seq=51 +GoLabel dt=1 label_string=2 +GoBlock dt=46 reason_string=15 stack=5 +GoUnblock dt=15 g=14 g_seq=52 stack=0 +GoStart dt=4 g=14 g_seq=53 +GoLabel dt=1 label_string=2 +GoBlock dt=26 reason_string=15 stack=5 +GoUnblock dt=29 g=70 g_seq=23 stack=0 +GoStart dt=5 g=70 g_seq=24 +GoLabel dt=1 label_string=2 +GoBlock dt=15 reason_string=15 stack=5 +GoStart dt=30 g=94 g_seq=6 +GCMarkAssistEnd dt=5 +HeapAlloc dt=37 heapalloc_value=192699096 +GoStop dt=34 reason_string=16 stack=6 +GoUnblock dt=9 g=70 g_seq=25 stack=0 +GoStart dt=3 g=70 g_seq=26 +GoLabel dt=1 label_string=2 +GoUnblock dt=190 g=98 g_seq=7 stack=12 +GoUnblock dt=6 g=91 g_seq=1 stack=12 +GoUnblock dt=7 g=123 g_seq=6 stack=12 +GoUnblock dt=5 g=100 g_seq=3 stack=12 +GoUnblock dt=3 g=102 g_seq=3 stack=12 +GoUnblock dt=3 g=103 g_seq=4 stack=12 +GoUnblock dt=5 g=117 g_seq=3 stack=12 +GoBlock dt=45 reason_string=15 stack=5 +GoUnblock dt=8 g=70 g_seq=27 stack=0 +GoStart dt=1 g=70 g_seq=28 +GoLabel dt=1 label_string=2 +GoUnblock dt=1939 g=111 g_seq=7 stack=12 +GoUnblock dt=10 g=101 g_seq=5 stack=12 +GoBlock dt=23 reason_string=15 stack=5 +GoStart dt=15 g=98 g_seq=8 +GCMarkAssistEnd dt=8 +HeapAlloc dt=57 heapalloc_value=193960664 +GCMarkAssistBegin dt=83 stack=3 +GoBlock dt=26 reason_string=13 stack=11 +GoStart dt=7 g=91 g_seq=2 +GCMarkAssistEnd dt=6 +HeapAlloc dt=47 heapalloc_value=194296536 +GCMarkAssistBegin dt=103 stack=3 +GoBlock dt=118 reason_string=13 stack=11 +GoStart dt=20 g=123 g_seq=7 +GCMarkAssistEnd dt=4 +HeapAlloc dt=448 heapalloc_value=195058392 +GoStop dt=6487 reason_string=16 stack=6 +GoStart dt=27 g=123 g_seq=8 +GCMarkAssistBegin dt=10 stack=3 +GoBlock dt=32 reason_string=10 stack=18 +ProcStop dt=78 +ProcStart dt=16845 p=9 p_seq=1 +GoStart dt=21 g=127 g_seq=10 +GCMarkAssistEnd dt=11 +GCSweepBegin dt=37 stack=28 +GCSweepEnd dt=17 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=7 heapalloc_value=110613376 +HeapAlloc dt=77 heapalloc_value=110956160 +HeapAlloc dt=127 heapalloc_value=111501184 +HeapAlloc dt=150 heapalloc_value=112133376 +HeapAlloc dt=103 heapalloc_value=112487168 +HeapAlloc dt=158 heapalloc_value=113166976 +GCSweepBegin dt=50 stack=28 +GCSweepEnd dt=32 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=6 heapalloc_value=113407616 +HeapAlloc dt=173 heapalloc_value=114067840 +HeapAlloc dt=153 heapalloc_value=114430208 +GCSweepBegin dt=35 stack=28 +GCSweepEnd dt=4 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=4 heapalloc_value=114551936 +GCSweepBegin dt=1034 stack=27 +EventBatch gen=3 m=169407 time=28114950901555 size=528 +ProcStatus dt=2 p=4 pstatus=1 +GoStatus dt=1 g=72 m=169407 gstatus=2 +GoBlock dt=7 reason_string=15 stack=5 +GoUnblock dt=1446 g=72 g_seq=3 stack=0 +GoStart dt=9 g=72 g_seq=4 +GoLabel dt=1 label_string=4 +GoBlock dt=394 reason_string=15 stack=5 +GoStart dt=26 g=106 g_seq=3 +GoBlock dt=149 reason_string=13 stack=11 +GoUnblock dt=2557 g=72 g_seq=5 stack=0 +GoStart dt=8 g=72 g_seq=6 +GoLabel dt=1 label_string=4 +GoBlock dt=44 reason_string=15 stack=5 +GoUnblock dt=13 g=72 g_seq=7 stack=0 +GoStart dt=6 g=72 g_seq=8 +GoLabel dt=5 label_string=2 +GoBlock dt=1622 reason_string=15 stack=5 +GoUnblock dt=9 g=72 g_seq=9 stack=0 +GoStart dt=6 g=72 g_seq=10 +GoLabel dt=1 label_string=2 +GoUnblock dt=165 g=87 g_seq=2 stack=12 +GoBlock dt=854 reason_string=15 stack=5 +GoUnblock dt=9 g=72 g_seq=11 stack=0 +GoStart dt=4 g=72 g_seq=12 +GoLabel dt=1 label_string=2 +GoBlock dt=398 reason_string=15 stack=5 +GoUnblock dt=20 g=72 g_seq=13 stack=0 +GoStart dt=5 g=72 g_seq=14 +GoLabel dt=1 label_string=2 +GoBlock dt=1475 reason_string=15 stack=5 +GoStart dt=1158 g=93 g_seq=2 +GoStatus dt=24 g=94 m=18446744073709551615 gstatus=4 +GoUnblock dt=5 g=94 g_seq=1 stack=10 +GCMarkAssistBegin dt=19 stack=3 +GoBlock dt=235 reason_string=13 stack=11 +GoStart dt=9 g=94 g_seq=2 +GoStatus dt=18 g=100 m=18446744073709551615 gstatus=4 +GoUnblock dt=3 g=100 g_seq=1 stack=10 +GCMarkAssistBegin dt=16 stack=3 +GoStop dt=7669 reason_string=20 stack=9 +GoStart dt=9 g=94 g_seq=3 +GoStop dt=5028 reason_string=20 stack=9 +GoUnblock dt=76 g=23 g_seq=39 stack=0 +GoStart dt=4 g=23 g_seq=40 +GoLabel dt=1 label_string=4 +GoBlock dt=464 reason_string=15 stack=5 +GoUnblock dt=67 g=23 g_seq=41 stack=0 +GoStart dt=151 g=23 g_seq=42 +GoLabel dt=2 label_string=4 +GoBlock dt=3280 reason_string=15 stack=5 +GoStart dt=35 g=113 g_seq=6 +GCMarkAssistEnd dt=7 +GCMarkAssistBegin dt=65 stack=3 +GoBlock dt=63 reason_string=13 stack=11 +ProcStop dt=162 +ProcStart dt=22113 p=24 p_seq=4 +GoStart dt=228 g=111 g_seq=8 +GCMarkAssistEnd dt=11 +HeapAlloc dt=64 heapalloc_value=196401616 +GoStop dt=6120 reason_string=16 stack=6 +GoStart dt=26 g=111 g_seq=9 +GCMarkAssistBegin dt=15 stack=3 +GoBlock dt=35 reason_string=10 stack=18 +ProcStop dt=128 +ProcStart dt=7783 p=1 p_seq=3 +GoStart dt=191 g=87 g_seq=8 +GCMarkAssistEnd dt=9 +GCSweepBegin dt=33 stack=28 +GCSweepEnd dt=16 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=4 heapalloc_value=103833248 +GCSweepBegin dt=56 stack=27 +GCSweepEnd dt=1508 swept_value=4194304 reclaimed_value=3072000 +HeapAlloc dt=33 heapalloc_value=105692064 +HeapAlloc dt=115 heapalloc_value=105976736 +HeapAlloc dt=44 heapalloc_value=106034080 +HeapAlloc dt=109 heapalloc_value=106332320 +HeapAlloc dt=95 heapalloc_value=106715424 +HeapAlloc dt=80 heapalloc_value=106958496 +HeapAlloc dt=97 heapalloc_value=107330592 +HeapAlloc dt=56 heapalloc_value=107460384 +HeapAlloc dt=117 heapalloc_value=107811360 +HeapAlloc dt=62 heapalloc_value=108141856 +HeapAlloc dt=115 heapalloc_value=108472352 +HeapAlloc dt=103 heapalloc_value=108710048 +GCSweepBegin dt=51 stack=28 +GCSweepEnd dt=11 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=4 heapalloc_value=108832928 +HeapAlloc dt=51 heapalloc_value=109134624 +HeapAlloc dt=100 heapalloc_value=109470496 +HeapAlloc dt=98 heapalloc_value=109831200 +HeapAlloc dt=69 heapalloc_value=110087968 +HeapAlloc dt=117 heapalloc_value=110388096 +HeapAlloc dt=150 heapalloc_value=111005312 +HeapAlloc dt=140 heapalloc_value=111509376 +HeapAlloc dt=55 heapalloc_value=111773568 +HeapAlloc dt=105 heapalloc_value=112162048 +GCSweepBegin dt=85 stack=28 +GCSweepEnd dt=8 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=3 heapalloc_value=112560896 +HeapAlloc dt=68 heapalloc_value=112816768 +HeapAlloc dt=47 heapalloc_value=112988800 +HeapAlloc dt=122 heapalloc_value=113464960 +HeapAlloc dt=150 heapalloc_value=114008448 +GCSweepBegin dt=885 stack=27 +EventBatch gen=3 m=169406 time=28114950897134 size=117 +ProcStatus dt=3 p=6 pstatus=1 +GoStatus dt=5 g=52 m=169406 gstatus=2 +GoBlock dt=14 reason_string=15 stack=5 +GoUnblock dt=16 g=52 g_seq=1 stack=0 +GoStart dt=5 g=52 g_seq=2 +GoLabel dt=1 label_string=2 +GoBlock dt=3752 reason_string=15 stack=5 +GoUnblock dt=21 g=52 g_seq=3 stack=0 +GoStart dt=7 g=52 g_seq=4 +GoLabel dt=1 label_string=2 +GoBlock dt=4444 reason_string=15 stack=5 +GoUnblock dt=12 g=52 g_seq=5 stack=0 +GoStart dt=7 g=52 g_seq=6 +GoLabel dt=1 label_string=2 +GoBlock dt=5071 reason_string=15 stack=5 +GoUnblock dt=15 g=52 g_seq=7 stack=0 +GoStart dt=6 g=52 g_seq=8 +GoLabel dt=2 label_string=2 +GoBlock dt=2302 reason_string=15 stack=5 +GoUnblock dt=14 g=52 g_seq=9 stack=0 +GoStart dt=6 g=52 g_seq=10 +GoLabel dt=1 label_string=2 +GoBlock dt=32 reason_string=15 stack=5 +GoUnblock dt=9 g=52 g_seq=11 stack=0 +GoStart dt=6 g=52 g_seq=12 +GoLabel dt=1 label_string=2 +GoBlock dt=22 reason_string=15 stack=5 +ProcStop dt=35 +EventBatch gen=3 m=169405 time=28114950903578 size=119 +ProcStatus dt=2 p=15 pstatus=1 +GoStatus dt=4 g=53 m=169405 gstatus=2 +GoBlock dt=8 reason_string=15 stack=5 +GoUnblock dt=5238 g=25 g_seq=7 stack=0 +GoStart dt=7 g=25 g_seq=8 +GoLabel dt=1 label_string=4 +GoBlock dt=49 reason_string=15 stack=5 +GoUnblock dt=1111 g=58 g_seq=11 stack=0 +GoStart dt=6 g=58 g_seq=12 +GoLabel dt=1 label_string=4 +GoBlock dt=158 reason_string=15 stack=5 +GoStart dt=3143 g=100 g_seq=2 +GoStatus dt=20 g=109 m=18446744073709551615 gstatus=4 +GoUnblock dt=7 g=109 g_seq=1 stack=10 +GCMarkAssistBegin dt=17 stack=3 +GoBlock dt=2307 reason_string=13 stack=11 +GoUnblock dt=2192 g=14 g_seq=13 stack=0 +GoStart dt=4 g=14 g_seq=14 +GoLabel dt=1 label_string=4 +GoBlock dt=1366 reason_string=15 stack=5 +GoUnblock dt=68 g=23 g_seq=21 stack=0 +GoStart dt=4 g=23 g_seq=22 +GoLabel dt=1 label_string=4 +GoBlock dt=21 reason_string=15 stack=5 +ProcStop dt=3159 +EventBatch gen=3 m=169404 time=28114950896316 size=116 +ProcStatus dt=1 p=5 pstatus=1 +GoStatus dt=2 g=14 m=169404 gstatus=2 +GoBlock dt=5 reason_string=15 stack=5 +GoUnblock dt=1436 g=67 g_seq=3 stack=0 +GoStart dt=217 g=67 g_seq=4 +GoLabel dt=3 label_string=4 +GoBlock dt=1945 reason_string=15 stack=5 +GoStart dt=23 g=121 g_seq=3 +GoStop dt=570 reason_string=20 stack=9 +GoStart dt=14 g=121 g_seq=4 +GoBlock dt=1389 reason_string=13 stack=11 +GoUnblock dt=13 g=51 g_seq=3 stack=0 +GoStart dt=7 g=51 g_seq=4 +GoLabel dt=1 label_string=2 +GoBlock dt=1439 reason_string=15 stack=5 +GoUnblock dt=17 g=14 g_seq=5 stack=0 +GoStart dt=5 g=14 g_seq=6 +GoLabel dt=2 label_string=2 +GoBlock dt=11474 reason_string=15 stack=5 +GoStart dt=4166 g=109 g_seq=3 +GoBlock dt=39 reason_string=13 stack=11 +GoStart dt=20 g=119 g_seq=4 +GCMarkAssistEnd dt=7 +HeapAlloc dt=68 heapalloc_value=191921600 +GCMarkAssistBegin dt=69 stack=3 +GoBlock dt=23 reason_string=13 stack=11 +ProcStop dt=59 +EventBatch gen=3 m=169402 time=28114950895074 size=135 +ProcStatus dt=2 p=9 pstatus=1 +GoStatus dt=2 g=25 m=169402 gstatus=2 +GoBlock dt=14 reason_string=15 stack=5 +GoStart dt=54 g=98 g_seq=1 +GCMarkAssistBegin dt=99 stack=3 +GCMarkAssistEnd dt=1187 +HeapAlloc dt=68 heapalloc_value=190463424 +GoStop dt=53 reason_string=16 stack=6 +GoStart dt=10 g=82 g_seq=1 +GCMarkAssistBegin dt=82 stack=3 +GoStop dt=2699 reason_string=20 stack=9 +GoStart dt=13 g=107 g_seq=2 +GCMarkAssistEnd dt=7 +GCMarkAssistBegin dt=49 stack=3 +GoBlock dt=852 reason_string=13 stack=11 +GoStart dt=29 g=90 g_seq=2 +GCMarkAssistEnd dt=3 +HeapAlloc dt=36 heapalloc_value=191233472 +GCMarkAssistBegin dt=825 stack=3 +GoBlock dt=392 reason_string=13 stack=11 +GoUnblock dt=21 g=67 g_seq=5 stack=0 +GoStart dt=5 g=67 g_seq=6 +GoLabel dt=1 label_string=2 +GoBlock dt=8638 reason_string=15 stack=5 +GoUnblock dt=9 g=67 g_seq=7 stack=0 +GoStart dt=4 g=67 g_seq=8 +GoLabel dt=1 label_string=2 +GoBlock dt=145 reason_string=15 stack=5 +GoUnblock dt=14 g=67 g_seq=9 stack=0 +GoStart dt=5 g=67 g_seq=10 +GoLabel dt=1 label_string=2 +GoBlock dt=7067 reason_string=15 stack=5 +ProcStop dt=23 +EventBatch gen=3 m=169401 time=28114950894770 size=505 +ProcStatus dt=1 p=8 pstatus=1 +GoStatus dt=1 g=130 m=169401 gstatus=2 +ProcsChange dt=124 procs_value=48 stack=1 +GCActive dt=3 gc_seq=4 +HeapAlloc dt=600 heapalloc_value=190152128 +HeapAlloc dt=16 heapalloc_value=190160320 +HeapAlloc dt=11095 heapalloc_value=191741376 +HeapAlloc dt=179 heapalloc_value=191749568 +HeapAlloc dt=14244 heapalloc_value=192011712 +HeapAlloc dt=292 heapalloc_value=192019904 +HeapAlloc dt=244 heapalloc_value=192028096 +HeapAlloc dt=3225 heapalloc_value=192036288 +HeapAlloc dt=39 heapalloc_value=192044192 +HeapAlloc dt=60 heapalloc_value=192052000 +HeapAlloc dt=462 heapalloc_value=192060192 +HeapAlloc dt=85 heapalloc_value=192068384 +HeapAlloc dt=341 heapalloc_value=192076576 +HeapAlloc dt=314 heapalloc_value=192142112 +GoStop dt=8367 reason_string=16 stack=14 +GoUnblock dt=274 g=30 g_seq=27 stack=0 +GoStart dt=6 g=30 g_seq=28 +GoLabel dt=1 label_string=2 +GoBlock dt=312 reason_string=15 stack=5 +GoUnblock dt=403 g=30 g_seq=29 stack=0 +GoStart dt=4 g=30 g_seq=30 +GoLabel dt=1 label_string=2 +GoBlock dt=773 reason_string=15 stack=5 +GoUnblock dt=7 g=30 g_seq=31 stack=0 +GoStart dt=3 g=30 g_seq=32 +GoLabel dt=1 label_string=2 +GoBlock dt=8 reason_string=15 stack=5 +GoStart dt=14 g=112 g_seq=4 +GCMarkAssistEnd dt=6 +HeapAlloc dt=45 heapalloc_value=192297760 +GCMarkAssistBegin dt=107 stack=3 +GoStop dt=897 reason_string=20 stack=9 +GoUnblock dt=15 g=70 g_seq=19 stack=0 +GoStart dt=5 g=70 g_seq=20 +GoLabel dt=1 label_string=2 +GoUnblock dt=1479 g=105 g_seq=5 stack=12 +GoBlock dt=2280 reason_string=15 stack=5 +GoUnblock dt=12 g=70 g_seq=21 stack=0 +GoStart dt=5 g=70 g_seq=22 +GoLabel dt=2 label_string=2 +GoBlock dt=1253 reason_string=15 stack=5 +GoUnblock dt=23 g=71 g_seq=35 stack=0 +GoStart dt=8 g=71 g_seq=36 +GoLabel dt=2 label_string=2 +GoBlock dt=26 reason_string=15 stack=5 +GoUnblock dt=6 g=71 g_seq=37 stack=0 +GoStart dt=3 g=71 g_seq=38 +GoLabel dt=1 label_string=2 +GoBlock dt=9 reason_string=15 stack=5 +GoUnblock dt=3 g=71 g_seq=39 stack=0 +GoStart dt=2 g=71 g_seq=40 +GoLabel dt=1 label_string=2 +GoBlock dt=21 reason_string=15 stack=5 +GoUnblock dt=3 g=71 g_seq=41 stack=0 +GoStart dt=1 g=71 g_seq=42 +GoLabel dt=1 label_string=2 +GoUnblock dt=82 g=109 g_seq=4 stack=12 +GoUnblock dt=6 g=106 g_seq=4 stack=12 +GoUnblock dt=103 g=111 g_seq=4 stack=12 +GoUnblock dt=5 g=112 g_seq=6 stack=12 +GoUnblock dt=6 g=96 g_seq=5 stack=12 +GoUnblock dt=4 g=119 g_seq=5 stack=12 +GoUnblock dt=6 g=122 g_seq=1 stack=12 +GoUnblock dt=11 g=97 g_seq=5 stack=12 +GoUnblock dt=4 g=107 g_seq=3 stack=12 +GoUnblock dt=106 g=92 g_seq=3 stack=12 +GoUnblock dt=4 g=116 g_seq=9 stack=12 +GoUnblock dt=5 g=82 g_seq=8 stack=12 +GoBlock dt=9 reason_string=15 stack=5 +GoStart dt=12 g=111 g_seq=5 +GCMarkAssistEnd dt=5 +HeapAlloc dt=22 heapalloc_value=192797400 +GCMarkAssistBegin dt=75 stack=3 +GoStop dt=22 reason_string=20 stack=9 +GoUnblock dt=11 g=25 g_seq=53 stack=0 +GoStart dt=4 g=25 g_seq=54 +GoLabel dt=1 label_string=2 +GoUnblock dt=1354 g=95 g_seq=4 stack=12 +GoUnblock dt=9 g=90 g_seq=6 stack=12 +GoUnblock dt=6 g=113 g_seq=9 stack=12 +GoUnblock dt=3 g=89 g_seq=6 stack=12 +GoBlock dt=30 reason_string=15 stack=5 +GoStart dt=10 g=112 g_seq=7 +GCMarkAssistEnd dt=5 +GCMarkAssistBegin dt=28 stack=3 +GoBlock dt=587 reason_string=13 stack=11 +GoStart dt=6 g=116 g_seq=10 +GCMarkAssistEnd dt=5 +HeapAlloc dt=54 heapalloc_value=194337496 +GCMarkAssistBegin dt=51 stack=3 +GoBlock dt=21 reason_string=13 stack=11 +GoStart dt=8 g=82 g_seq=9 +GCMarkAssistEnd dt=6 +HeapAlloc dt=63 heapalloc_value=194525912 +GCMarkAssistBegin dt=51 stack=3 +GoBlock dt=45 reason_string=13 stack=11 +GoStart dt=22 g=95 g_seq=5 +GCMarkAssistEnd dt=6 +HeapAlloc dt=1508 heapalloc_value=195394264 +GoStop dt=6034 reason_string=16 stack=6 +GoStart dt=48 g=95 g_seq=6 +GCMarkAssistBegin dt=18 stack=3 +GoBlock dt=48 reason_string=10 stack=18 +ProcStop dt=85 +ProcStart dt=20619 p=17 p_seq=1 +GoStart dt=1507 g=130 g_seq=7 +EventBatch gen=3 m=169400 time=28114950894819 size=671 +ProcStatus dt=1 p=12 pstatus=1 +GoStatus dt=2 g=112 m=169400 gstatus=2 +GCMarkAssistBegin dt=120 stack=3 +GCMarkAssistEnd dt=3298 +HeapAlloc dt=41 heapalloc_value=190758336 +GCMarkAssistBegin dt=29 stack=3 +GoStop dt=2271 reason_string=20 stack=9 +GoStart dt=14 g=112 g_seq=1 +GoStop dt=569 reason_string=20 stack=9 +GoUnblock dt=2436 g=54 g_seq=1 stack=0 +GoStart dt=18 g=54 g_seq=2 +GoLabel dt=1 label_string=4 +GoBlock dt=31 reason_string=15 stack=5 +GoUnblock dt=5090 g=57 g_seq=13 stack=0 +GoStart dt=6 g=57 g_seq=14 +GoLabel dt=1 label_string=4 +GoBlock dt=734 reason_string=15 stack=5 +GoUnblock dt=4144 g=71 g_seq=15 stack=0 +GoStart dt=5 g=71 g_seq=16 +GoLabel dt=1 label_string=4 +GoUnblock dt=415 g=111 g_seq=2 stack=12 +GoBlock dt=5674 reason_string=15 stack=5 +GoUnblock dt=9 g=71 g_seq=17 stack=0 +GoStart dt=5 g=71 g_seq=18 +GoLabel dt=1 label_string=2 +GoUnblock dt=693 g=83 g_seq=3 stack=12 +GoBlock dt=4708 reason_string=15 stack=5 +GoUnblock dt=14 g=71 g_seq=19 stack=0 +GoStart dt=6 g=71 g_seq=20 +GoLabel dt=3 label_string=2 +GoBlock dt=1294 reason_string=15 stack=5 +GoUnblock dt=11 g=71 g_seq=21 stack=0 +GoStart dt=4 g=71 g_seq=22 +GoLabel dt=1 label_string=2 +GoBlock dt=2434 reason_string=15 stack=5 +GoUnblock dt=8 g=71 g_seq=23 stack=0 +GoStart dt=3 g=71 g_seq=24 +GoLabel dt=1 label_string=2 +GoBlock dt=4227 reason_string=15 stack=5 +ProcStop dt=41 +ProcStart dt=3260 p=12 p_seq=1 +GoUnblock dt=16 g=30 g_seq=33 stack=0 +GoStart dt=143 g=30 g_seq=34 +GoLabel dt=1 label_string=2 +GoUnblock dt=553 g=89 g_seq=3 stack=12 +GoUnblock dt=971 g=127 g_seq=3 stack=12 +GoBlock dt=39 reason_string=15 stack=5 +GoStart dt=21 g=89 g_seq=4 +GCMarkAssistEnd dt=10 +HeapAlloc dt=1100 heapalloc_value=192510680 +GoStop dt=24 reason_string=16 stack=6 +GoUnblock dt=12 g=22 g_seq=51 stack=0 +GoStart dt=5 g=22 g_seq=52 +GoLabel dt=3 label_string=2 +GoBlock dt=1678 reason_string=15 stack=5 +GoUnblock dt=13 g=22 g_seq=53 stack=0 +GoStart dt=277 g=22 g_seq=54 +GoLabel dt=3 label_string=2 +GoBlock dt=960 reason_string=15 stack=5 +GoUnblock dt=8 g=22 g_seq=55 stack=0 +GoStart dt=4 g=22 g_seq=56 +GoLabel dt=1 label_string=2 +GoUnblock dt=583 g=99 g_seq=3 stack=12 +GoUnblock dt=5 g=83 g_seq=6 stack=12 +GoUnblock dt=5 g=124 g_seq=3 stack=12 +GoUnblock dt=6 g=105 g_seq=9 stack=12 +GoUnblock dt=1280 g=128 g_seq=3 stack=12 +GoUnblock dt=8 g=101 g_seq=3 stack=12 +GoBlock dt=7 reason_string=15 stack=5 +GoStart dt=11 g=128 g_seq=4 +GCMarkAssistEnd dt=7 +HeapAlloc dt=38 heapalloc_value=193297112 +GCMarkAssistBegin dt=118 stack=3 +GCMarkAssistEnd dt=44 +HeapAlloc dt=21 heapalloc_value=193403608 +GoStop dt=87 reason_string=16 stack=6 +GoStart dt=15 g=101 g_seq=4 +GCMarkAssistEnd dt=5 +HeapAlloc dt=58 heapalloc_value=193608408 +GCMarkAssistBegin dt=92 stack=3 +GoBlock dt=22 reason_string=13 stack=11 +GoStart dt=10 g=128 g_seq=5 +HeapAlloc dt=34 heapalloc_value=193829592 +HeapAlloc dt=166 heapalloc_value=194026200 +HeapAlloc dt=236 heapalloc_value=194419416 +HeapAlloc dt=885 heapalloc_value=195279576 +GoStop dt=6734 reason_string=16 stack=6 +GoUnblock dt=1628 g=130 g_seq=3 stack=0 +GoStart dt=136 g=130 g_seq=4 +HeapAlloc dt=62 heapalloc_value=196532688 +HeapAlloc dt=28 heapalloc_value=196540880 +HeapAlloc dt=22 heapalloc_value=196549072 +HeapAlloc dt=26 heapalloc_value=196557264 +HeapAlloc dt=38 heapalloc_value=196565456 +HeapAlloc dt=51 heapalloc_value=196573648 +GoStop dt=3032 reason_string=16 stack=19 +GoStart dt=10 g=117 g_seq=5 +GCMarkAssistBegin dt=16 stack=3 +GoBlock dt=51 reason_string=10 stack=18 +ProcStop dt=29 +ProcStart dt=9381 p=4 p_seq=2 +GoStart dt=190 g=105 g_seq=16 +GCMarkAssistEnd dt=4 +HeapAlloc dt=76 heapalloc_value=105214112 +HeapAlloc dt=103 heapalloc_value=105517216 +HeapAlloc dt=84 heapalloc_value=105642912 +HeapAlloc dt=85 heapalloc_value=105864096 +GCSweepBegin dt=188 stack=28 +GCSweepEnd dt=17 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=2 heapalloc_value=106376096 +HeapAlloc dt=43 heapalloc_value=106518816 +HeapAlloc dt=43 heapalloc_value=106756384 +HeapAlloc dt=82 heapalloc_value=106978976 +HeapAlloc dt=42 heapalloc_value=107091616 +GCSweepBegin dt=23 stack=28 +GCSweepEnd dt=8 swept_value=8192 reclaimed_value=8192 +HeapAlloc dt=3 heapalloc_value=107310112 +HeapAlloc dt=35 heapalloc_value=107372960 +HeapAlloc dt=65 heapalloc_value=107583264 +HeapAlloc dt=141 heapalloc_value=108018976 +HeapAlloc dt=161 heapalloc_value=108567968 +GCSweepBegin dt=85 stack=28 +GCSweepEnd dt=9 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=4 heapalloc_value=108808352 +HeapAlloc dt=90 heapalloc_value=109241120 +HeapAlloc dt=139 heapalloc_value=109623584 +HeapAlloc dt=162 heapalloc_value=110175008 +HeapAlloc dt=164 heapalloc_value=110769024 +HeapAlloc dt=246 heapalloc_value=111705984 +HeapAlloc dt=187 heapalloc_value=112446208 +HeapAlloc dt=161 heapalloc_value=113148544 +HeapAlloc dt=295 heapalloc_value=114145664 +GCSweepBegin dt=159 stack=28 +GCSweepEnd dt=5 swept_value=8192 reclaimed_value=8192 +HeapAlloc dt=7 heapalloc_value=114588800 +GCSweepBegin dt=48 stack=27 +EventBatch gen=3 m=169398 time=28114950899192 size=165 +ProcStatus dt=1 p=37 pstatus=2 +ProcStart dt=2 p=37 p_seq=1 +GoStatus dt=3261 g=29 m=18446744073709551615 gstatus=4 +GoUnblock dt=6 g=29 g_seq=1 stack=0 +GoStart dt=10 g=29 g_seq=2 +GoLabel dt=1 label_string=4 +GoBlock dt=1840 reason_string=15 stack=5 +GoStart dt=16 g=86 g_seq=3 +GoBlock dt=1090 reason_string=13 stack=11 +ProcStop dt=1389 +ProcStart dt=16 p=37 p_seq=2 +GoStart dt=1537 g=84 g_seq=4 GCMarkAssistEnd dt=7 -HeapAlloc dt=41 heapalloc_value=190880856 -HeapAlloc dt=87 heapalloc_value=190930008 -GCMarkAssistBegin dt=55 stack=2 -GCMarkAssistEnd dt=4370 -HeapAlloc dt=35 heapalloc_value=194197592 -HeapAlloc dt=187 heapalloc_value=194476120 -HeapAlloc dt=108 heapalloc_value=194558040 -HeapAlloc dt=170 heapalloc_value=194902104 -HeapAlloc dt=40 heapalloc_value=194916696 -GCMarkAssistBegin dt=15 stack=2 -GCMarkAssistEnd dt=3044 -HeapAlloc dt=60 heapalloc_value=197620056 -HeapAlloc dt=60 heapalloc_value=197701976 -HeapAlloc dt=41 heapalloc_value=197775704 -HeapAlloc dt=13131 heapalloc_value=200978776 -GoStop dt=22 reason_string=16 stack=3 -GoUnblock dt=12889 g=16 g_seq=3 stack=0 -GoStart dt=8 g=16 g_seq=4 -GoLabel dt=1 label_string=2 -GoBlock dt=1560 reason_string=15 stack=7 -GoStart dt=1275 g=100 g_seq=2 -GoStatus dt=32 g=95 m=18446744073709551615 gstatus=4 -GoUnblock dt=6 g=95 g_seq=1 stack=5 -HeapAlloc dt=78 heapalloc_value=203116120 -GoStop dt=22757 reason_string=16 stack=3 -GoStart dt=16 g=85 g_seq=3 -HeapAlloc dt=60903 heapalloc_value=206576728 -GoStop dt=16 reason_string=16 stack=3 -GoStart dt=38 g=111 g_seq=4 -HeapAlloc dt=271 heapalloc_value=206634072 -GoStop dt=50124 reason_string=16 stack=3 -GoStart dt=3215 g=111 g_seq=5 -GCMarkAssistBegin dt=13 stack=2 -GoBlock dt=32 reason_string=10 stack=19 -GoStart dt=1255 g=130 g_seq=7 -GoBlock dt=19 reason_string=10 stack=18 -ProcStop dt=48 -EventBatch gen=6 m=298974 time=22352100052338 size=394 -ProcStatus dt=1 p=31 pstatus=1 -GoStatus dt=3 g=130 m=298974 gstatus=2 -ProcsChange dt=195 procs_value=48 stack=1 -GCActive dt=3 gc_seq=7 -HeapAlloc dt=616 heapalloc_value=188981464 -HeapAlloc dt=138 heapalloc_value=189161688 -HeapAlloc dt=509 heapalloc_value=189636440 -HeapAlloc dt=452 heapalloc_value=189947736 -HeapAlloc dt=239 heapalloc_value=189955160 -HeapAlloc dt=149 heapalloc_value=190012504 -HeapAlloc dt=415 heapalloc_value=190504024 -HeapAlloc dt=153 heapalloc_value=190635096 -HeapAlloc dt=331 heapalloc_value=191003736 -HeapAlloc dt=516 heapalloc_value=191085656 -HeapAlloc dt=158 heapalloc_value=191265496 -HeapAlloc dt=134 heapalloc_value=191339224 -HeapAlloc dt=142 heapalloc_value=191387736 -HeapAlloc dt=868 heapalloc_value=191625304 -HeapAlloc dt=899 heapalloc_value=192665688 -GoStop dt=16317 reason_string=16 stack=9 -GoStart dt=21 g=94 g_seq=1 -HeapAlloc dt=9193 heapalloc_value=201339224 -GoStop dt=60 reason_string=16 stack=3 -GoUnblock dt=21 g=16 g_seq=1 stack=0 -GoStart dt=8 g=16 g_seq=2 -GoLabel dt=2 label_string=2 -GoBlock dt=4316 reason_string=15 stack=7 -GoStart dt=16 g=96 g_seq=2 -HeapAlloc dt=69 heapalloc_value=202215000 -GoStop dt=42112 reason_string=16 stack=3 -GoUnblock dt=35 g=15 g_seq=25 stack=0 -GoStart dt=11 g=15 g_seq=26 -GoLabel dt=1 label_string=2 -GoStop dt=4149 reason_string=16 stack=10 -GoStart dt=7 g=83 g_seq=4 -HeapAlloc dt=55170 heapalloc_value=208018520 -GoStop dt=7 reason_string=16 stack=3 -GoStart dt=20 g=109 g_seq=6 -HeapAlloc dt=25 heapalloc_value=208084056 -GoStop dt=5099 reason_string=16 stack=3 -GoStart dt=12 g=64 g_seq=4 -HeapAlloc dt=4840 heapalloc_value=208354392 -GoStop dt=9 reason_string=16 stack=3 -GoStart dt=10 g=89 g_seq=3 -HeapAlloc dt=418 heapalloc_value=208395352 -HeapAlloc dt=72 heapalloc_value=208452696 -HeapAlloc dt=24 heapalloc_value=208493656 -HeapAlloc dt=45 heapalloc_value=208641112 -HeapAlloc dt=15 heapalloc_value=208690264 -HeapAlloc dt=110 heapalloc_value=208763992 -HeapAlloc dt=43 heapalloc_value=208903256 -HeapAlloc dt=72 heapalloc_value=209116248 -GoStop dt=4753 reason_string=16 stack=3 -GoStart dt=9 g=108 g_seq=5 -HeapAlloc dt=17 heapalloc_value=209329240 -GoStop dt=4771 reason_string=16 stack=3 -GoStart dt=9 g=61 g_seq=3 -HeapAlloc dt=37 heapalloc_value=209525848 -GoStop dt=4792 reason_string=16 stack=3 -GoStart dt=9 g=55 g_seq=7 -HeapAlloc dt=41 heapalloc_value=209656920 -HeapAlloc dt=21 heapalloc_value=209665112 -HeapAlloc dt=73 heapalloc_value=209804376 -GoStop dt=5092 reason_string=16 stack=3 -GoStart dt=10 g=55 g_seq=8 -HeapAlloc dt=32 heapalloc_value=209910872 -HeapAlloc dt=98 heapalloc_value=210017368 -HeapAlloc dt=46 heapalloc_value=210164824 -GoStop dt=24428 reason_string=16 stack=3 -ProcStop dt=151 -ProcStart dt=1506 p=31 p_seq=1 -ProcStop dt=75 -EventBatch gen=6 m=298973 time=22352100052423 size=176 -ProcStatus dt=1 p=26 pstatus=1 -GoStatus dt=2 g=84 m=298973 gstatus=2 -HeapAlloc dt=3 heapalloc_value=188760280 -HeapAlloc dt=88 heapalloc_value=188834008 -HeapAlloc dt=66 heapalloc_value=188899544 -GCMarkAssistBegin dt=75 stack=2 -GCMarkAssistEnd dt=4559 -HeapAlloc dt=15 heapalloc_value=191518808 -HeapAlloc dt=892 heapalloc_value=192444504 -HeapAlloc dt=108 heapalloc_value=192649304 -GCMarkAssistBegin dt=160 stack=2 -GCMarkAssistEnd dt=4061 -HeapAlloc dt=56 heapalloc_value=196997464 -HeapAlloc dt=616 heapalloc_value=197194072 -HeapAlloc dt=4462 heapalloc_value=199741784 -HeapAlloc dt=16222 heapalloc_value=201396568 -GoStop dt=16 reason_string=16 stack=3 -GoUnblock dt=24 g=25 g_seq=1 stack=0 -GoStart dt=9 g=25 g_seq=2 -GoLabel dt=1 label_string=2 -GoBlock dt=3553 reason_string=15 stack=7 -GoStart dt=16 g=99 g_seq=3 -HeapAlloc dt=30 heapalloc_value=201928280 -HeapAlloc dt=49586 heapalloc_value=204549528 -GoStop dt=18 reason_string=16 stack=3 -GoStart dt=66 g=89 g_seq=2 -HeapAlloc dt=57 heapalloc_value=204688728 -GoStop dt=57848 reason_string=16 stack=3 -GoStart dt=14 g=93 g_seq=3 -HeapAlloc dt=41 heapalloc_value=208272472 -GoStop dt=47024 reason_string=16 stack=3 -GoStart dt=126 g=101 g_seq=6 -GCMarkAssistBegin dt=13 stack=2 -GoBlock dt=40 reason_string=10 stack=19 -ProcStop dt=70 -EventBatch gen=6 m=298972 time=22352100057302 size=288 -ProcStatus dt=1 p=12 pstatus=1 -GoStatus dt=2 g=54 m=298972 gstatus=2 -GCMarkAssistActive dt=1 g=54 +HeapAlloc dt=55 heapalloc_value=191847872 +GCMarkAssistBegin dt=85 stack=3 +GoBlock dt=249 reason_string=13 stack=11 +GoUnblock dt=1134 g=58 g_seq=9 stack=0 +GoStart dt=7 g=58 g_seq=10 +GoLabel dt=1 label_string=4 +GoBlock dt=27 reason_string=15 stack=5 +GoUnblock dt=2190 g=53 g_seq=9 stack=0 +GoStart dt=8 g=53 g_seq=10 +GoLabel dt=1 label_string=4 +GoBlock dt=21 reason_string=15 stack=5 +GoUnblock dt=2156 g=25 g_seq=13 stack=0 +GoStart dt=4 g=25 g_seq=14 +GoLabel dt=1 label_string=4 +GoBlock dt=20 reason_string=15 stack=5 +GoUnblock dt=1089 g=14 g_seq=7 stack=0 +GoStart dt=4 g=14 g_seq=8 +GoLabel dt=1 label_string=4 +GoBlock dt=107 reason_string=15 stack=5 +GoUnblock dt=1081 g=24 g_seq=15 stack=0 +GoStart dt=6 g=24 g_seq=16 +GoLabel dt=1 label_string=4 +GoBlock dt=19 reason_string=15 stack=5 +ProcStop dt=1075 +EventBatch gen=3 m=169397 time=28114950897533 size=734 +ProcStatus dt=1 p=25 pstatus=1 +GoStatus dt=2 g=118 m=169397 gstatus=2 +GCMarkAssistActive dt=1 g=118 GCMarkAssistEnd dt=2 -HeapAlloc dt=36 heapalloc_value=191617112 -HeapAlloc dt=391 heapalloc_value=191887448 -HeapAlloc dt=104 heapalloc_value=192067672 -GCMarkAssistBegin dt=141 stack=2 -GCMarkAssistEnd dt=2786 -HeapAlloc dt=43 heapalloc_value=195268952 -HeapAlloc dt=196 heapalloc_value=195473752 -HeapAlloc dt=160 heapalloc_value=195637592 -GCMarkAssistBegin dt=23 stack=2 -GCMarkAssistEnd dt=6451 -HeapAlloc dt=15930 heapalloc_value=201281880 -GoStop dt=19 reason_string=16 stack=3 -GoUnblock dt=17 g=39 g_seq=3 stack=0 -GoStart dt=6 g=39 g_seq=4 -GoLabel dt=1 label_string=2 -GoBlock dt=3845 reason_string=15 stack=7 -GoStart dt=1314 g=59 g_seq=2 -GoStatus dt=24 g=115 m=18446744073709551615 gstatus=4 -GoUnblock dt=11 g=115 g_seq=1 stack=5 -HeapAlloc dt=41617 heapalloc_value=204213848 -GoStop dt=21 reason_string=16 stack=3 -GoStart dt=21 g=55 g_seq=2 -HeapAlloc dt=219 heapalloc_value=204312152 -GoStop dt=6348 reason_string=16 stack=3 -GoStart dt=73 g=130 g_seq=3 -HeapAlloc dt=38 heapalloc_value=204557656 -GoBlock dt=30 reason_string=12 stack=17 -GoUnblock dt=14 g=130 g_seq=4 stack=0 -GoStart dt=8 g=130 g_seq=5 -HeapAlloc dt=39 heapalloc_value=204762392 -HeapAlloc dt=37 heapalloc_value=204770520 -HeapAlloc dt=19 heapalloc_value=204778584 -HeapAlloc dt=30 heapalloc_value=204786264 -HeapAlloc dt=34 heapalloc_value=204793944 -HeapAlloc dt=40 heapalloc_value=204801112 -HeapAlloc dt=87 heapalloc_value=204807256 -GoBlock dt=383 reason_string=10 stack=18 -GoStart dt=13 g=104 g_seq=2 -HeapAlloc dt=48 heapalloc_value=204921944 -GoStop dt=62156 reason_string=16 stack=3 -GoStart dt=15 g=108 g_seq=4 -HeapAlloc dt=230 heapalloc_value=208551000 -GoStop dt=2947 reason_string=16 stack=3 -GoStart dt=10 g=95 g_seq=4 -HeapAlloc dt=38 heapalloc_value=209280088 -GoStop dt=39489 reason_string=16 stack=3 -GoStart dt=163 g=86 g_seq=5 -HeapAlloc dt=6283 heapalloc_value=213719576 -GoStop dt=6937 reason_string=16 stack=3 -ProcStop dt=8 -EventBatch gen=6 m=298971 time=22352100074727 size=135 -ProcStatus dt=1 p=3 pstatus=1 -GoStatus dt=2 g=44 m=298971 gstatus=2 -GoBlock dt=8 reason_string=15 stack=7 -GoUnblock dt=9213 g=12 g_seq=1 stack=0 -GoStart dt=12 g=12 g_seq=2 -GoLabel dt=1 label_string=2 -GoBlock dt=1136 reason_string=15 stack=7 -GoUnblock dt=14 g=12 g_seq=3 stack=0 -GoStart dt=3 g=12 g_seq=4 -GoLabel dt=1 label_string=2 -GoBlock dt=2373 reason_string=15 stack=7 -GoStart dt=3642 g=115 g_seq=2 -GoStatus dt=29 g=87 m=18446744073709551615 gstatus=4 -GoUnblock dt=6 g=87 g_seq=1 stack=5 -HeapAlloc dt=81 heapalloc_value=202821208 -GoStop dt=55810 reason_string=16 stack=3 -GoStart dt=49 g=115 g_seq=3 -HeapAlloc dt=59 heapalloc_value=205282392 -GoStop dt=58208 reason_string=16 stack=3 -GoStart dt=17 g=86 g_seq=4 -HeapAlloc dt=55 heapalloc_value=209394776 -GoStop dt=37479 reason_string=16 stack=3 -GoStart dt=26 g=95 g_seq=5 -HeapAlloc dt=13313 heapalloc_value=214243864 -GoStop dt=14 reason_string=16 stack=3 -ProcStop dt=113 -EventBatch gen=6 m=298970 time=22352100053999 size=340 -ProcStatus dt=2 p=10 pstatus=1 -GoStatus dt=1 g=108 m=298970 gstatus=2 -GCMarkAssistActive dt=2 g=108 +HeapAlloc dt=37 heapalloc_value=190684608 +GCMarkAssistBegin dt=79 stack=3 +GoBlock dt=1327 reason_string=13 stack=11 +ProcStop dt=4643 +ProcStart dt=23 p=25 p_seq=1 +GoUnblock dt=20 g=53 g_seq=1 stack=0 +GoStart dt=9 g=53 g_seq=2 +GoLabel dt=1 label_string=2 +GoBlock dt=2529 reason_string=15 stack=5 +GoStart dt=3244 g=123 g_seq=2 +GoStatus dt=30 g=97 m=18446744073709551615 gstatus=4 +GoUnblock dt=13 g=97 g_seq=1 stack=10 +GCMarkAssistBegin dt=20 stack=3 +GoStop dt=1976 reason_string=20 stack=9 +GoStart dt=15 g=123 g_seq=3 +GoStop dt=2654 reason_string=20 stack=9 +GoStart dt=12 g=123 g_seq=4 +GoStop dt=2704 reason_string=20 stack=9 +GoUnblock dt=9 g=24 g_seq=17 stack=0 +GoStart dt=4 g=24 g_seq=18 +GoLabel dt=1 label_string=2 +GoBlock dt=4029 reason_string=15 stack=5 +GoUnblock dt=14 g=24 g_seq=19 stack=0 +GoStart dt=4 g=24 g_seq=20 +GoLabel dt=1 label_string=2 +GoBlock dt=534 reason_string=15 stack=5 +GoUnblock dt=4 g=24 g_seq=21 stack=0 +GoStart dt=4 g=24 g_seq=22 +GoLabel dt=1 label_string=2 +GoBlock dt=250 reason_string=15 stack=5 +GoUnblock dt=12 g=24 g_seq=23 stack=0 +GoStart dt=4 g=24 g_seq=24 +GoLabel dt=1 label_string=2 +GoBlock dt=22 reason_string=15 stack=5 +ProcStop dt=71 +ProcStart dt=244 p=25 p_seq=2 +ProcStop dt=54 +ProcStart dt=25 p=25 p_seq=3 +GoUnblock dt=8 g=53 g_seq=21 stack=0 +GoStart dt=7 g=53 g_seq=22 +GoLabel dt=1 label_string=4 +GoBlock dt=86 reason_string=15 stack=5 +GoUnblock dt=59 g=56 g_seq=3 stack=0 +GoStart dt=4 g=56 g_seq=4 +GoLabel dt=1 label_string=4 +GoBlock dt=6219 reason_string=15 stack=5 +GoUnblock dt=52 g=56 g_seq=5 stack=0 +GoStart dt=4 g=56 g_seq=6 +GoLabel dt=1 label_string=4 +GoBlock dt=98 reason_string=15 stack=5 +GoUnblock dt=61 g=14 g_seq=27 stack=0 +GoStart dt=4 g=14 g_seq=28 +GoLabel dt=1 label_string=4 +GoBlock dt=32 reason_string=15 stack=5 +GoUnblock dt=13 g=14 g_seq=29 stack=0 +GoStart dt=5 g=14 g_seq=30 +GoLabel dt=1 label_string=2 +GoBlock dt=2423 reason_string=15 stack=5 +ProcStop dt=36 +ProcStart dt=7135 p=31 p_seq=2 +GoStart dt=228 g=127 g_seq=4 +GCMarkAssistEnd dt=9 +HeapAlloc dt=2440 heapalloc_value=192666328 +GoStop dt=28 reason_string=16 stack=4 +GoUnblock dt=19 g=52 g_seq=57 stack=0 +GoStart dt=6 g=52 g_seq=58 +GoLabel dt=1 label_string=2 +GoBlock dt=1072 reason_string=15 stack=5 +GoUnblock dt=16 g=52 g_seq=59 stack=0 +GoStart dt=6 g=52 g_seq=60 +GoLabel dt=1 label_string=2 +GoBlock dt=19 reason_string=15 stack=5 +GoUnblock dt=17 g=54 g_seq=39 stack=0 +GoStart dt=4 g=54 g_seq=40 +GoLabel dt=1 label_string=2 +GoBlock dt=2352 reason_string=15 stack=5 +GoStart dt=22 g=127 g_seq=8 +GCMarkAssistBegin dt=127 stack=3 +GoBlock dt=42 reason_string=13 stack=11 +GoStart dt=766 g=122 g_seq=2 GCMarkAssistEnd dt=2 -HeapAlloc dt=48 heapalloc_value=189890392 -GoStop dt=34 reason_string=16 stack=3 -GoStatus dt=13 g=96 m=298970 gstatus=1 -GoStart dt=1 g=96 g_seq=1 -GoStatus dt=22 g=114 m=18446744073709551615 gstatus=4 -GoUnblock dt=10 g=114 g_seq=1 stack=5 -GCMarkAssistBegin dt=10 stack=2 -GCMarkAssistEnd dt=5450 -HeapAlloc dt=39 heapalloc_value=194009176 -HeapAlloc dt=551 heapalloc_value=194517080 -GCMarkAssistBegin dt=54 stack=2 -GCMarkAssistEnd dt=3263 -HeapAlloc dt=67 heapalloc_value=197570904 -HeapAlloc dt=50 heapalloc_value=197677400 -HeapAlloc dt=55 heapalloc_value=197767512 -HeapAlloc dt=159 heapalloc_value=198054232 -HeapAlloc dt=151 heapalloc_value=198226264 -HeapAlloc dt=191 heapalloc_value=198357336 -HeapAlloc dt=12880 heapalloc_value=201011544 -GoStop dt=18 reason_string=16 stack=3 -GoUnblock dt=10965 g=39 g_seq=5 stack=0 -GoStart dt=7 g=39 g_seq=6 -GoLabel dt=1 label_string=2 -GoBlock dt=167 reason_string=15 stack=7 -GoStart dt=1196 g=111 g_seq=2 -GoStatus dt=28 g=85 m=18446744073709551615 gstatus=4 -GoUnblock dt=6 g=85 g_seq=1 stack=5 -HeapAlloc dt=66 heapalloc_value=202346072 -GoStop dt=17042 reason_string=16 stack=3 -GoUnblock dt=17 g=25 g_seq=7 stack=0 -GoStart dt=5 g=25 g_seq=8 -GoLabel dt=1 label_string=2 -GoBlock dt=2416 reason_string=15 stack=7 -GoStart dt=13 g=90 g_seq=3 -HeapAlloc dt=71 heapalloc_value=203837016 -GoStop dt=62121 reason_string=16 stack=3 -GoStart dt=39 g=60 g_seq=3 -HeapAlloc dt=82 heapalloc_value=206437464 -GoStop dt=54604 reason_string=16 stack=3 -GoStart dt=23 g=60 g_seq=4 -HeapAlloc dt=81 heapalloc_value=210664344 -HeapAlloc dt=64 heapalloc_value=210697112 -HeapAlloc dt=18 heapalloc_value=210738072 -GCMarkAssistBegin dt=94 stack=2 -GoBlock dt=43 reason_string=10 stack=19 -GoStart dt=7 g=90 g_seq=5 -HeapAlloc dt=25 heapalloc_value=210803608 -HeapAlloc dt=13 heapalloc_value=210852760 -HeapAlloc dt=21 heapalloc_value=210893720 -GoStop dt=10 reason_string=16 stack=3 -GoStart dt=6 g=90 g_seq=6 -HeapAlloc dt=12 heapalloc_value=210942872 -GCMarkAssistBegin dt=11 stack=2 -GoBlock dt=20 reason_string=10 stack=19 -GoStart dt=53 g=92 g_seq=6 -HeapAlloc dt=201 heapalloc_value=211008408 -HeapAlloc dt=40 heapalloc_value=211041176 -GCMarkAssistBegin dt=14 stack=2 -GoBlock dt=21 reason_string=10 stack=19 -ProcStop dt=73 -ProcStart dt=336 p=44 p_seq=2 -ProcStop dt=4479 -EventBatch gen=6 m=298969 time=22352100069956 size=128 -ProcStatus dt=2 p=43 pstatus=2 -ProcStart dt=2 p=43 p_seq=1 -GoStatus dt=15 g=42 m=18446744073709551615 gstatus=4 -GoUnblock dt=4 g=42 g_seq=1 stack=0 -GoStart dt=224 g=42 g_seq=2 -GoLabel dt=2 label_string=2 -GoBlock dt=7220 reason_string=15 stack=7 -GoUnblock dt=11092 g=41 g_seq=3 stack=0 -GoStart dt=7 g=41 g_seq=4 -GoLabel dt=1 label_string=2 -GoBlock dt=61 reason_string=15 stack=7 -GoStart dt=3782 g=85 g_seq=2 -GoStatus dt=29 g=86 m=18446744073709551615 gstatus=4 -GoUnblock dt=8 g=86 g_seq=1 stack=5 -HeapAlloc dt=23022 heapalloc_value=204074584 -GoStop dt=16 reason_string=16 stack=3 -GoStart dt=37 g=100 g_seq=3 -HeapAlloc dt=62404 heapalloc_value=206683224 -GoStop dt=35 reason_string=16 stack=3 -GoStart dt=35 g=107 g_seq=4 -HeapAlloc dt=53117 heapalloc_value=211180440 -GoStop dt=20 reason_string=16 stack=3 -ProcStop dt=1371 -EventBatch gen=6 m=298968 time=22352100074716 size=174 -ProcStatus dt=1 p=5 pstatus=1 -GoStatus dt=3 g=16 m=298968 gstatus=2 -GoBlock dt=7 reason_string=15 stack=7 -GoUnblock dt=8057 g=42 g_seq=3 stack=0 -GoStart dt=8 g=42 g_seq=4 -GoLabel dt=1 label_string=2 -GoBlock dt=169 reason_string=10 stack=11 -GoStart dt=2502 g=81 g_seq=2 -GoStatus dt=28 g=111 m=18446744073709551615 gstatus=4 -GoUnblock dt=7 g=111 g_seq=1 stack=5 -HeapAlloc dt=78 heapalloc_value=201445720 -GoStop dt=34580 reason_string=16 stack=3 -GoStart dt=12 g=81 g_seq=3 -HeapAlloc dt=62668 heapalloc_value=206863448 -GoStop dt=31 reason_string=16 stack=3 -GoStart dt=32 g=81 g_seq=4 -HeapAlloc dt=44 heapalloc_value=206961752 -GoStop dt=48130 reason_string=16 stack=3 -GoStart dt=66 g=107 g_seq=5 -HeapAlloc dt=66 heapalloc_value=211221400 -GCMarkAssistBegin dt=33 stack=2 -GoBlock dt=36 reason_string=13 stack=21 -ProcStop dt=1336 -ProcStart dt=2637 p=5 p_seq=1 -ProcStop dt=58 -ProcStart dt=2377 p=5 p_seq=2 -ProcStop dt=48 -ProcStart dt=1225 p=5 p_seq=3 -ProcStop dt=52 -ProcStart dt=32 p=5 p_seq=4 -GoStart dt=60 g=114 g_seq=6 -HeapAlloc dt=43 heapalloc_value=212089368 -GoStop dt=7372 reason_string=16 stack=3 -GoStart dt=11 g=114 g_seq=7 -GCMarkAssistBegin dt=18 stack=2 -GoBlock dt=37 reason_string=10 stack=19 -ProcStop dt=52 -EventBatch gen=6 m=298967 time=22352100057154 size=271 -ProcStatus dt=1 p=24 pstatus=1 -GoStatus dt=2 g=60 m=298967 gstatus=2 -GCMarkAssistActive dt=1 g=60 -GCMarkAssistEnd dt=4 -HeapAlloc dt=41 heapalloc_value=191469656 -HeapAlloc dt=298 heapalloc_value=191674456 -HeapAlloc dt=100 heapalloc_value=191805528 -HeapAlloc dt=60 heapalloc_value=191830104 -HeapAlloc dt=64 heapalloc_value=191838296 -HeapAlloc dt=105 heapalloc_value=192026712 -HeapAlloc dt=110 heapalloc_value=192239704 -GCMarkAssistBegin dt=186 stack=2 -GCMarkAssistEnd dt=2876 -HeapAlloc dt=39 heapalloc_value=195531096 -HeapAlloc dt=154 heapalloc_value=195703128 -HeapAlloc dt=50 heapalloc_value=195744088 -HeapAlloc dt=96 heapalloc_value=195760472 -HeapAlloc dt=51 heapalloc_value=195793240 -HeapAlloc dt=66 heapalloc_value=195850584 -GCMarkAssistBegin dt=92 stack=2 -GCMarkAssistEnd dt=1801 -HeapAlloc dt=48 heapalloc_value=197480792 -HeapAlloc dt=52 heapalloc_value=197513560 -HeapAlloc dt=149 heapalloc_value=197661016 -HeapAlloc dt=42 heapalloc_value=197685592 -HeapAlloc dt=150 heapalloc_value=197931352 -HeapAlloc dt=12267 heapalloc_value=200470872 -GoStop dt=18073 reason_string=16 stack=3 -GoUnblock dt=14 g=39 g_seq=9 stack=0 -GoStart dt=6 g=39 g_seq=10 -GoLabel dt=1 label_string=2 -GoBlock dt=10705 reason_string=15 stack=7 -GoUnblock dt=11 g=39 g_seq=11 stack=0 -GoStart dt=9 g=39 g_seq=12 -GoLabel dt=1 label_string=2 -GoBlock dt=1769 reason_string=15 stack=7 -GoUnblock dt=8 g=39 g_seq=13 stack=0 -GoStart dt=4 g=39 g_seq=14 -GoLabel dt=1 label_string=2 -GoBlock dt=950 reason_string=15 stack=7 -GoStart dt=13 g=56 g_seq=1 -HeapAlloc dt=68 heapalloc_value=203615832 -GoStop dt=49082 reason_string=16 stack=3 -GoStart dt=26 g=91 g_seq=4 -HeapAlloc dt=46 heapalloc_value=205683800 -GoStop dt=58167 reason_string=16 stack=3 -GoStart dt=11 g=61 g_seq=4 -HeapAlloc dt=43 heapalloc_value=209706072 -GoStop dt=29030 reason_string=16 stack=3 -GoStart dt=29 g=61 g_seq=5 -HeapAlloc dt=5293 heapalloc_value=213752344 -GoStop dt=12 reason_string=16 stack=3 -ProcStop dt=2659 -EventBatch gen=6 m=298966 time=22352100072475 size=160 -ProcStatus dt=1 p=45 pstatus=2 -ProcStart dt=2 p=45 p_seq=1 -GoStart dt=1382 g=109 g_seq=2 -GoStatus dt=23 g=63 m=18446744073709551615 gstatus=4 -GoUnblock dt=7 g=63 g_seq=1 stack=5 -HeapAlloc dt=2114 heapalloc_value=200339800 -HeapAlloc dt=92 heapalloc_value=200544600 -GoStop dt=13419 reason_string=16 stack=3 -GoUnblock dt=17 g=48 g_seq=5 stack=0 -GoStart dt=5 g=48 g_seq=6 -GoLabel dt=1 label_string=2 -GoBlock dt=2630 reason_string=15 stack=7 -GoStart dt=2485 g=95 g_seq=2 -GoStatus dt=36 g=57 m=18446744073709551615 gstatus=4 -GoUnblock dt=8 g=57 g_seq=1 stack=5 -HeapAlloc dt=72 heapalloc_value=203214424 -GoStop dt=47481 reason_string=16 stack=3 -GoStart dt=29 g=95 g_seq=3 -HeapAlloc dt=21 heapalloc_value=205151320 -GoStop dt=58442 reason_string=16 stack=3 -GoStart dt=16 g=112 g_seq=4 -HeapAlloc dt=58 heapalloc_value=209165400 -GoStop dt=41373 reason_string=16 stack=3 -GoStart dt=80 g=112 g_seq=5 -HeapAlloc dt=298 heapalloc_value=212867608 -HeapAlloc dt=6484 heapalloc_value=213604888 -GoStop dt=7201 reason_string=16 stack=3 -ProcStop dt=7 -EventBatch gen=6 m=298965 time=22352100054801 size=252 -ProcStatus dt=1 p=33 pstatus=1 -GoStart dt=2 g=99 g_seq=2 -GoStatus dt=33 g=110 m=18446744073709551615 gstatus=4 -GoUnblock dt=16 g=110 g_seq=1 stack=5 -HeapAlloc dt=64 heapalloc_value=190315608 -HeapAlloc dt=105 heapalloc_value=190479448 -GCMarkAssistBegin dt=99 stack=2 -GCMarkAssistEnd dt=2171 -HeapAlloc dt=33 heapalloc_value=191576152 -HeapAlloc dt=269 heapalloc_value=191797336 -HeapAlloc dt=145 heapalloc_value=191944792 -HeapAlloc dt=104 heapalloc_value=192133208 -HeapAlloc dt=200 heapalloc_value=192338008 -GCMarkAssistBegin dt=35 stack=2 -GCMarkAssistEnd dt=1722 -HeapAlloc dt=80 heapalloc_value=194148440 -HeapAlloc dt=131 heapalloc_value=194263128 -HeapAlloc dt=101 heapalloc_value=194435160 -GCMarkAssistBegin dt=20 stack=2 -GCMarkAssistEnd dt=164 -HeapAlloc dt=299 heapalloc_value=195105112 -HeapAlloc dt=106 heapalloc_value=195162456 -HeapAlloc dt=158 heapalloc_value=195309912 -GCMarkAssistBegin dt=93 stack=2 -GCMarkAssistEnd dt=3303 -HeapAlloc dt=56 heapalloc_value=198586712 -HeapAlloc dt=173 heapalloc_value=198717784 -HeapAlloc dt=64 heapalloc_value=198832472 -HeapAlloc dt=141 heapalloc_value=199111000 -HeapAlloc dt=11337 heapalloc_value=200429912 -GoStop dt=11027 reason_string=16 stack=3 -GoUnblock dt=22 g=65 g_seq=11 stack=0 -GoStart dt=8 g=65 g_seq=12 -GoLabel dt=1 label_string=2 -GoBlock dt=267 reason_string=15 stack=7 -GoUnblock dt=15 g=65 g_seq=13 stack=0 -GoStart dt=4 g=65 g_seq=14 -GoLabel dt=1 label_string=2 -GoBlock dt=57 reason_string=15 stack=7 -GoStart dt=11 g=58 g_seq=3 -HeapAlloc dt=37 heapalloc_value=201993816 -GoStop dt=90596 reason_string=16 stack=3 -GoStart dt=50 g=100 g_seq=4 -HeapAlloc dt=86 heapalloc_value=206797912 -GoStop dt=52843 reason_string=16 stack=3 -GoStart dt=46 g=100 g_seq=5 -GCMarkAssistBegin dt=16 stack=2 -GoBlock dt=40 reason_string=10 stack=19 -ProcStop dt=1323 -EventBatch gen=6 m=298964 time=22352100053523 size=171 -ProcStatus dt=2 p=30 pstatus=1 -GoStatus dt=1 g=62 m=298964 gstatus=2 -GCMarkAssistActive dt=1 g=62 -GCMarkAssistEnd dt=3 -HeapAlloc dt=46 heapalloc_value=189268184 -HeapAlloc dt=81 heapalloc_value=189432024 -HeapAlloc dt=98 heapalloc_value=189538136 -GCMarkAssistBegin dt=17 stack=2 -GCMarkAssistEnd dt=3690 -HeapAlloc dt=121 heapalloc_value=191739992 -HeapAlloc dt=199 heapalloc_value=191985752 -GCMarkAssistBegin dt=73 stack=2 -GCMarkAssistEnd dt=1274 -HeapAlloc dt=29 heapalloc_value=193443928 -HeapAlloc dt=172 heapalloc_value=193607768 -HeapAlloc dt=170 heapalloc_value=193919064 -GCMarkAssistBegin dt=32 stack=2 -GCMarkAssistEnd dt=4117 -HeapAlloc dt=61 heapalloc_value=197824856 -GoStop dt=13187 reason_string=16 stack=3 -GoUnblock dt=10226 g=13 g_seq=7 stack=0 -GoStart dt=17 g=13 g_seq=8 -GoLabel dt=1 label_string=2 -GoBlock dt=314 reason_string=15 stack=7 -GoStart dt=15 g=102 g_seq=3 -HeapAlloc dt=74 heapalloc_value=202051160 -GoStop dt=95370 reason_string=16 stack=3 -GoStart dt=23 g=63 g_seq=5 -HeapAlloc dt=43 heapalloc_value=207027288 -GoStop dt=48065 reason_string=16 stack=3 -GoStart dt=27 g=63 g_seq=6 -GCMarkAssistBegin dt=11 stack=2 -GoBlock dt=27 reason_string=10 stack=19 -GoStart dt=10 g=81 g_seq=5 -GCMarkAssistBegin dt=11 stack=2 -GoBlock dt=30 reason_string=10 stack=19 -ProcStop dt=1354 -EventBatch gen=6 m=298963 time=22352100054549 size=142 -ProcStatus dt=2 p=25 pstatus=1 -GoStatus dt=2 g=56 m=298963 gstatus=2 -GCMarkAssistActive dt=1 g=56 +HeapAlloc dt=19 heapalloc_value=194902744 +GCMarkAssistBegin dt=66 stack=3 +STWBegin dt=12586 kind_string=21 stack=21 +GoUnblock dt=699 g=91 g_seq=3 stack=22 +GoUnblock dt=5 g=127 g_seq=9 stack=22 +GoUnblock dt=3 g=112 g_seq=8 stack=22 +GoUnblock dt=4 g=82 g_seq=10 stack=22 +GoUnblock dt=3 g=116 g_seq=11 stack=22 +GoUnblock dt=3 g=93 g_seq=8 stack=22 +GoUnblock dt=4 g=109 g_seq=6 stack=22 +GoUnblock dt=5 g=115 g_seq=9 stack=22 +GoUnblock dt=7 g=120 g_seq=7 stack=22 +GoUnblock dt=7 g=105 g_seq=15 stack=22 +GoUnblock dt=6 g=96 g_seq=7 stack=22 +GoUnblock dt=3 g=118 g_seq=6 stack=22 +GoUnblock dt=4 g=87 g_seq=7 stack=22 +GoUnblock dt=4 g=84 g_seq=9 stack=22 +GoUnblock dt=6 g=100 g_seq=6 stack=22 +GoUnblock dt=29 g=86 g_seq=6 stack=23 +HeapAlloc dt=53 heapalloc_value=103773088 +GoStatus dt=10 g=3 m=18446744073709551615 gstatus=4 +GoUnblock dt=7 g=3 g_seq=1 stack=24 +GCEnd dt=3 gc_seq=5 +HeapGoal dt=6 heapgoal_value=207987496 +ProcsChange dt=45 procs_value=48 stack=25 +STWEnd dt=399 +GoUnblock dt=5992 g=130 g_seq=6 stack=26 +GCMarkAssistEnd dt=9 +HeapAlloc dt=11 heapalloc_value=103816864 +GCSweepBegin dt=79 stack=27 +GCSweepEnd dt=1631 swept_value=8388608 reclaimed_value=3260416 +HeapAlloc dt=14 heapalloc_value=104810272 +HeapAlloc dt=104 heapalloc_value=105001504 +HeapAlloc dt=107 heapalloc_value=105164960 +HeapAlloc dt=55 heapalloc_value=105308320 +HeapAlloc dt=200 heapalloc_value=105798560 +HeapAlloc dt=119 heapalloc_value=106091424 +HeapAlloc dt=118 heapalloc_value=106359712 +HeapAlloc dt=47 heapalloc_value=106488096 +HeapAlloc dt=44 heapalloc_value=106763424 +HeapAlloc dt=26 heapalloc_value=106820768 +HeapAlloc dt=106 heapalloc_value=107277344 +HeapAlloc dt=131 heapalloc_value=107656992 +HeapAlloc dt=71 heapalloc_value=107790880 +GCSweepBegin dt=42 stack=28 +GCSweepEnd dt=6 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=3 heapalloc_value=107860512 +HeapAlloc dt=71 heapalloc_value=108305696 +HeapAlloc dt=113 heapalloc_value=108608928 +HeapAlloc dt=129 heapalloc_value=108890272 +HeapAlloc dt=147 heapalloc_value=109508896 +HeapAlloc dt=88 heapalloc_value=109776544 +HeapAlloc dt=140 heapalloc_value=110286976 +HeapAlloc dt=151 heapalloc_value=110900096 +HeapAlloc dt=152 heapalloc_value=111433600 +HeapAlloc dt=136 heapalloc_value=111931264 +HeapAlloc dt=67 heapalloc_value=112248064 +HeapAlloc dt=209 heapalloc_value=113046144 +HeapAlloc dt=213 heapalloc_value=113949056 +HeapAlloc dt=236 heapalloc_value=114471168 +HeapAlloc dt=90 heapalloc_value=114663552 +GCSweepBegin dt=45 stack=28 +GCSweepEnd dt=10 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=3 heapalloc_value=114703232 +GCSweepBegin dt=54 stack=27 +EventBatch gen=3 m=169396 time=28114950894859 size=148 +ProcStatus dt=2 p=1 pstatus=1 +GoStatus dt=4 g=86 m=169396 gstatus=2 +GCMarkAssistActive dt=2 g=86 +GCMarkAssistEnd dt=2 +HeapAlloc dt=42 heapalloc_value=189889984 +GoStop dt=32 reason_string=16 stack=4 +GoUnblock dt=117 g=69 g_seq=1 stack=0 +GoStart dt=6 g=69 g_seq=2 +GoLabel dt=1 label_string=2 +GoBlock dt=2672 reason_string=15 stack=5 +GoStart dt=16 g=84 g_seq=1 +GoStop dt=2565 reason_string=20 stack=9 +GoStart dt=17 g=84 g_seq=2 +GoBlock dt=886 reason_string=13 stack=11 +ProcStop dt=2581 +ProcStart dt=17 p=1 p_seq=1 +ProcStop dt=4400 +ProcStart dt=16 p=1 p_seq=2 +GoStart dt=24 g=87 g_seq=3 +GCMarkAssistEnd dt=8 +HeapAlloc dt=70 heapalloc_value=191782336 +GCMarkAssistBegin dt=85 stack=3 +GoBlock dt=1055 reason_string=13 stack=11 +GoUnblock dt=20 g=54 g_seq=9 stack=0 +GoStart dt=7 g=54 g_seq=10 +GoLabel dt=3 label_string=2 +GoBlock dt=230 reason_string=15 stack=5 +GoUnblock dt=12 g=54 g_seq=11 stack=0 +GoStart dt=6 g=54 g_seq=12 +GoLabel dt=1 label_string=2 +GoBlock dt=1754 reason_string=15 stack=5 +GoUnblock dt=12 g=54 g_seq=13 stack=0 +GoStart dt=8 g=54 g_seq=14 +GoLabel dt=3 label_string=2 +GoBlock dt=1379 reason_string=15 stack=5 +ProcStop dt=15 +EventBatch gen=3 m=169395 time=28114950898507 size=532 +ProcStatus dt=2 p=14 pstatus=1 +GoStatus dt=2 g=103 m=169395 gstatus=2 +GCMarkAssistActive dt=1 g=103 GCMarkAssistEnd dt=3 -HeapAlloc dt=36 heapalloc_value=190004312 -HeapAlloc dt=92 heapalloc_value=190078040 -HeapAlloc dt=167 heapalloc_value=190225496 -GCMarkAssistBegin dt=70 stack=2 -GCMarkAssistEnd dt=4319 -HeapAlloc dt=51 heapalloc_value=193558616 -HeapAlloc dt=111 heapalloc_value=193738840 -GCMarkAssistBegin dt=39 stack=2 -GCMarkAssistEnd dt=4233 -HeapAlloc dt=77 heapalloc_value=197882200 -HeapAlloc dt=12335 heapalloc_value=200479064 -HeapAlloc dt=48 heapalloc_value=200552792 -HeapAlloc dt=31 heapalloc_value=200610136 -GoStop dt=17373 reason_string=16 stack=3 -GoUnblock dt=24 g=13 g_seq=11 stack=0 -GoStart dt=6 g=13 g_seq=12 -GoLabel dt=1 label_string=2 -GoBlock dt=10590 reason_string=15 stack=7 -GoUnblock dt=15 g=13 g_seq=13 stack=0 -GoStart dt=7 g=13 g_seq=14 -GoLabel dt=1 label_string=2 -GoBlock dt=6272 reason_string=15 stack=7 -GoStart dt=13 g=92 g_seq=5 -HeapAlloc dt=115919 heapalloc_value=211000216 -GoStop dt=19 reason_string=16 stack=3 -ProcStop dt=88 -EventBatch gen=6 m=298962 time=22352100074194 size=135 -ProcStatus dt=2 p=46 pstatus=2 -ProcStart dt=1 p=46 p_seq=1 -GoStart dt=10862 g=116 g_seq=2 -GoStatus dt=28 g=105 m=18446744073709551615 gstatus=4 -GoUnblock dt=10 g=105 g_seq=1 stack=5 -HeapAlloc dt=35063 heapalloc_value=204115544 -GoStop dt=17 reason_string=16 stack=3 -GoStart dt=51 g=116 g_seq=3 -HeapAlloc dt=67815 heapalloc_value=207264856 -GoStop dt=19 reason_string=16 stack=3 -GoStart dt=55 g=62 g_seq=3 -HeapAlloc dt=67 heapalloc_value=207469656 -HeapAlloc dt=21 heapalloc_value=207551576 -HeapAlloc dt=43205 heapalloc_value=211278744 -GoStop dt=14 reason_string=16 stack=3 -GoStart dt=32 g=62 g_seq=4 -HeapAlloc dt=42 heapalloc_value=211336088 -HeapAlloc dt=36 heapalloc_value=211385240 -HeapAlloc dt=19 heapalloc_value=211426200 -GCMarkAssistBegin dt=39 stack=2 -GoBlock dt=37 reason_string=10 stack=19 -GoStart dt=9 g=116 g_seq=5 -HeapAlloc dt=12 heapalloc_value=211467160 -GoStop dt=3168 reason_string=16 stack=3 -ProcStop dt=221 -EventBatch gen=6 m=298961 time=22352100074702 size=120 -ProcStatus dt=1 p=1 pstatus=1 -GoStatus dt=4 g=12 m=298961 gstatus=2 -GoBlock dt=7 reason_string=15 stack=7 -GoUnblock dt=9690 g=46 g_seq=1 stack=0 -GoStart dt=7 g=46 g_seq=2 +HeapAlloc dt=40 heapalloc_value=190873024 +HeapAlloc dt=75 heapalloc_value=191036864 +GCMarkAssistBegin dt=65 stack=3 +GoBlock dt=6142 reason_string=13 stack=11 +GoStart dt=19 g=98 g_seq=3 +GCMarkAssistBegin dt=20 stack=3 +GoStop dt=1738 reason_string=20 stack=9 +GoStart dt=16 g=98 g_seq=4 +GoBlock dt=2102 reason_string=13 stack=11 +GoUnblock dt=2317 g=71 g_seq=5 stack=0 +GoStart dt=5 g=71 g_seq=6 +GoLabel dt=2 label_string=4 +GoBlock dt=128 reason_string=15 stack=5 +GoUnblock dt=2283 g=71 g_seq=13 stack=0 +GoStart dt=7 g=71 g_seq=14 +GoLabel dt=1 label_string=4 +GoBlock dt=97 reason_string=15 stack=5 +GoUnblock dt=1168 g=24 g_seq=13 stack=0 +GoStart dt=7 g=24 g_seq=14 +GoLabel dt=1 label_string=4 +GoBlock dt=1399 reason_string=15 stack=5 +GoUnblock dt=3752 g=23 g_seq=25 stack=0 +GoStart dt=6 g=23 g_seq=26 +GoLabel dt=3 label_string=4 +GoBlock dt=1167 reason_string=15 stack=5 +GoUnblock dt=99 g=52 g_seq=23 stack=0 +GoStart dt=35 g=52 g_seq=24 +GoLabel dt=1 label_string=4 +GoBlock dt=47 reason_string=15 stack=5 +GoUnblock dt=81 g=67 g_seq=19 stack=0 +GoStart dt=8 g=67 g_seq=20 +GoLabel dt=3 label_string=4 +GoBlock dt=3975 reason_string=15 stack=5 +GoUnblock dt=18 g=67 g_seq=21 stack=0 +GoStart dt=6 g=67 g_seq=22 +GoLabel dt=1 label_string=2 +GoBlock dt=80 reason_string=15 stack=5 +GoUnblock dt=18 g=67 g_seq=23 stack=0 +GoStart dt=6 g=67 g_seq=24 +GoLabel dt=1 label_string=2 +GoBlock dt=22 reason_string=15 stack=5 +GoUnblock dt=3174 g=14 g_seq=23 stack=0 +GoStart dt=7 g=14 g_seq=24 +GoLabel dt=1 label_string=4 +GoBlock dt=22 reason_string=15 stack=5 +GoUnblock dt=9 g=14 g_seq=25 stack=0 +GoStart dt=2 g=14 g_seq=26 +GoLabel dt=1 label_string=2 +GoBlock dt=13 reason_string=15 stack=5 +GoUnblock dt=65 g=29 g_seq=29 stack=0 +GoStart dt=8 g=29 g_seq=30 +GoLabel dt=1 label_string=4 +GoBlock dt=18 reason_string=15 stack=5 +GoUnblock dt=13 g=29 g_seq=31 stack=0 +GoStart dt=6 g=29 g_seq=32 GoLabel dt=2 label_string=2 -GoBlock dt=7805 reason_string=15 stack=7 -GoStart dt=3710 g=87 g_seq=2 -GoStatus dt=23 g=61 m=18446744073709551615 gstatus=4 -GoUnblock dt=7 g=61 g_seq=1 stack=5 -HeapAlloc dt=58 heapalloc_value=203320920 -GoStop dt=55875 reason_string=16 stack=3 -GoStart dt=31 g=61 g_seq=2 -HeapAlloc dt=51 heapalloc_value=205552728 -GoStop dt=53444 reason_string=16 stack=3 -GoStart dt=12 g=115 g_seq=4 -HeapAlloc dt=37 heapalloc_value=209460312 -GoStop dt=37651 reason_string=16 stack=3 -GoStart dt=192 g=115 g_seq=5 -HeapAlloc dt=5284 heapalloc_value=213482008 -GoStop dt=5400 reason_string=16 stack=3 -ProcStop dt=9 -EventBatch gen=6 m=298960 time=22352100055448 size=241 -ProcStatus dt=1 p=19 pstatus=1 -GoStatus dt=1 g=113 m=298960 gstatus=2 -GCMarkAssistActive dt=1 g=113 -GCMarkAssistEnd dt=3 -HeapAlloc dt=56 heapalloc_value=190995544 -HeapAlloc dt=61 heapalloc_value=191069272 -HeapAlloc dt=85 heapalloc_value=191077464 -GCMarkAssistBegin dt=16 stack=2 -GCMarkAssistEnd dt=4112 -HeapAlloc dt=55 heapalloc_value=194115672 -HeapAlloc dt=264 heapalloc_value=194426968 -HeapAlloc dt=272 heapalloc_value=194787416 -HeapAlloc dt=163 heapalloc_value=195015000 -GCMarkAssistBegin dt=59 stack=2 -GCMarkAssistEnd dt=4242 -HeapAlloc dt=42 heapalloc_value=199225688 -HeapAlloc dt=121 heapalloc_value=199389528 -HeapAlloc dt=231 heapalloc_value=199692632 -GoStop dt=8746 reason_string=16 stack=3 -GoUnblock dt=23 g=13 g_seq=1 stack=0 -GoStart dt=8 g=13 g_seq=2 -GoLabel dt=1 label_string=2 -GoBlock dt=4314 reason_string=15 stack=7 -GoUnblock dt=14654 g=46 g_seq=3 stack=0 -GoStart dt=5 g=46 g_seq=4 -GoLabel dt=3 label_string=2 -GoBlock dt=9490 reason_string=15 stack=7 -GoUnblock dt=14 g=46 g_seq=5 stack=0 -GoStart dt=5 g=46 g_seq=6 +GoBlock dt=21 reason_string=15 stack=5 +GoUnblock dt=19 g=24 g_seq=37 stack=0 +GoStart dt=4 g=24 g_seq=38 GoLabel dt=2 label_string=2 -GoBlock dt=23 reason_string=15 stack=7 -GoUnblock dt=10 g=46 g_seq=7 stack=0 -GoStart dt=1 g=46 g_seq=8 -GoLabel dt=1 label_string=2 -GoBlock dt=1339 reason_string=15 stack=7 -GoUnblock dt=6 g=46 g_seq=9 stack=0 -GoStart dt=5 g=46 g_seq=10 -GoLabel dt=1 label_string=2 -GoBlock dt=1072 reason_string=15 stack=7 -GoUnblock dt=7 g=46 g_seq=11 stack=0 -GoStart dt=3 g=46 g_seq=12 -GoLabel dt=1 label_string=2 -GoBlock dt=945 reason_string=15 stack=7 -GoStart dt=11 g=97 g_seq=3 -HeapAlloc dt=66 heapalloc_value=203492952 -HeapAlloc dt=31 heapalloc_value=203558488 -GoStop dt=4677 reason_string=16 stack=3 -GoStart dt=11 g=97 g_seq=4 -HeapAlloc dt=60587 heapalloc_value=206380120 -GoStop dt=54398 reason_string=16 stack=3 -ProcStop dt=148 -EventBatch gen=6 m=298959 time=22352100055250 size=167 -ProcStatus dt=2 p=15 pstatus=1 -GoStatus dt=4 g=94 m=298959 gstatus=2 -GCMarkAssistActive dt=1 g=94 -GCMarkAssistEnd dt=3 -HeapAlloc dt=29 heapalloc_value=190790744 -HeapAlloc dt=116 heapalloc_value=190823512 -GCMarkAssistBegin dt=54 stack=2 -GCMarkAssistEnd dt=693 -HeapAlloc dt=22 heapalloc_value=191216728 -HeapAlloc dt=116 heapalloc_value=191273688 -GCMarkAssistBegin dt=16 stack=2 -GCMarkAssistEnd dt=2777 -HeapAlloc dt=64 heapalloc_value=193394776 -HeapAlloc dt=324 heapalloc_value=193869912 -GCMarkAssistBegin dt=99 stack=2 -GCMarkAssistEnd dt=2889 -HeapAlloc dt=53 heapalloc_value=197054808 -HeapAlloc dt=12006 heapalloc_value=199913816 -GoStop dt=34 reason_string=16 stack=3 -GoUnblock dt=22 g=131 g_seq=5 stack=0 -GoStart dt=6 g=131 g_seq=6 -GoBlock dt=51 reason_string=15 stack=8 -GoStart dt=20 g=130 g_seq=1 -ProcStatus dt=6935 p=47 pstatus=2 -GoStop dt=53912 reason_string=16 stack=14 -GoUnblock dt=16 g=12 g_seq=19 stack=0 -GoStart dt=5 g=12 g_seq=20 -GoLabel dt=1 label_string=2 -HeapAlloc dt=181 heapalloc_value=204402072 -GoBlock dt=34 reason_string=10 stack=13 -GoStart dt=10 g=15 g_seq=27 -GoBlock dt=11 reason_string=10 stack=13 -GoStart dt=5 g=130 g_seq=2 -GoUnblock dt=18 g=42 g_seq=5 stack=15 -GoSyscallBegin dt=13 stack=16 -ProcStop dt=2 -GoSyscallEndBlocked dt=92 -EventBatch gen=6 m=298958 time=22352100057824 size=243 -ProcStatus dt=1 p=23 pstatus=1 -GoStatus dt=6 g=55 m=298958 gstatus=2 -GCMarkAssistActive dt=1 g=55 -GCMarkAssistEnd dt=1 -HeapAlloc dt=129 heapalloc_value=192256088 -HeapAlloc dt=108 heapalloc_value=192362584 -HeapAlloc dt=94 heapalloc_value=192526424 -HeapAlloc dt=197 heapalloc_value=192731224 -HeapAlloc dt=118 heapalloc_value=192886872 -HeapAlloc dt=109 heapalloc_value=193017944 -GCMarkAssistBegin dt=47 stack=2 -GCMarkAssistEnd dt=3127 -HeapAlloc dt=37 heapalloc_value=196145496 -HeapAlloc dt=191 heapalloc_value=196292952 -HeapAlloc dt=99 heapalloc_value=196473176 -HeapAlloc dt=161 heapalloc_value=196653400 -HeapAlloc dt=124 heapalloc_value=196825432 -HeapAlloc dt=12580 heapalloc_value=200085848 -HeapAlloc dt=66 heapalloc_value=200135000 -GoStop dt=8789 reason_string=16 stack=3 -GoUnblock dt=28 g=65 g_seq=3 stack=0 -GoStart dt=7 g=65 g_seq=4 +GoBlock dt=33 reason_string=15 stack=5 +GoUnblock dt=8 g=24 g_seq=39 stack=0 +GoStart dt=3 g=24 g_seq=40 +GoLabel dt=1 label_string=2 +GoBlock dt=32 reason_string=15 stack=5 +GoUnblock dt=80 g=25 g_seq=29 stack=0 +GoStart dt=9 g=25 g_seq=30 +GoLabel dt=1 label_string=4 +GoBlock dt=20 reason_string=15 stack=5 +GoUnblock dt=27 g=24 g_seq=43 stack=0 +GoStart dt=6 g=24 g_seq=44 +GoLabel dt=1 label_string=2 +GoBlock dt=185 reason_string=15 stack=5 +GoUnblock dt=9 g=24 g_seq=45 stack=0 +GoStart dt=6 g=24 g_seq=46 GoLabel dt=3 label_string=2 -GoBlock dt=2673 reason_string=15 stack=7 -GoUnblock dt=12 g=65 g_seq=5 stack=0 -GoStart dt=7 g=65 g_seq=6 -GoLabel dt=1 label_string=2 -GoBlock dt=84 reason_string=15 stack=7 -GoUnblock dt=13 g=65 g_seq=7 stack=0 -GoStart dt=7 g=65 g_seq=8 -GoLabel dt=1 label_string=2 -GoBlock dt=13 reason_string=15 stack=7 -GoUnblock dt=4 g=65 g_seq=9 stack=0 -GoStart dt=2 g=65 g_seq=10 -GoLabel dt=1 label_string=2 -GoBlock dt=93 reason_string=15 stack=7 -GoStart dt=10 g=94 g_seq=2 -HeapAlloc dt=73 heapalloc_value=201552216 -HeapAlloc dt=44 heapalloc_value=201593176 -GoStop dt=33291 reason_string=16 stack=3 -GoStart dt=16 g=94 g_seq=3 -HeapAlloc dt=62857 heapalloc_value=207076440 -GoStop dt=21 reason_string=16 stack=3 -GoStart dt=29 g=102 g_seq=4 -HeapAlloc dt=22 heapalloc_value=207117400 -GoStop dt=48081 reason_string=16 stack=3 -GoStart dt=28 g=102 g_seq=5 -GCMarkAssistBegin dt=12 stack=2 -GoBlock dt=37 reason_string=10 stack=19 -ProcStop dt=1268 -EventBatch gen=6 m=298957 time=22352100074742 size=104 -ProcStatus dt=2 p=14 pstatus=1 -GoStatus dt=4 g=41 m=298957 gstatus=2 -GoBlock dt=8 reason_string=15 stack=7 -GoUnblock dt=12874 g=12 g_seq=5 stack=0 -GoStart dt=8 g=12 g_seq=6 -GoLabel dt=1 label_string=2 -GoBlock dt=3050 reason_string=15 stack=7 -GoStart dt=16 g=112 g_seq=2 -HeapAlloc dt=51363 heapalloc_value=205003864 -GoStop dt=13 reason_string=16 stack=3 -GoStart dt=27 g=112 g_seq=3 -HeapAlloc dt=58371 heapalloc_value=208796760 -GoStop dt=11 reason_string=16 stack=3 -GoStart dt=11 g=101 g_seq=5 -HeapAlloc dt=42 heapalloc_value=208944216 -HeapAlloc dt=38 heapalloc_value=209058904 -GoStop dt=41552 reason_string=16 stack=3 -GoStart dt=91 g=93 g_seq=4 -HeapAlloc dt=14775 heapalloc_value=214301208 -GoStop dt=17 reason_string=16 stack=3 +GoBlock dt=10 reason_string=15 stack=5 +GoUnblock dt=6 g=24 g_seq=47 stack=0 +GoStart dt=1 g=24 g_seq=48 +GoLabel dt=1 label_string=2 +GoBlock dt=41 reason_string=15 stack=5 +ProcStop dt=59 +ProcStart dt=21430 p=4 p_seq=1 +GoStart dt=238 g=102 g_seq=4 +GCMarkAssistEnd dt=10 +HeapAlloc dt=38 heapalloc_value=196352464 +GoStop dt=5526 reason_string=16 stack=6 +ProcStop dt=240 +ProcStart dt=11401 p=6 p_seq=1 +GoStart dt=196 g=109 g_seq=7 +GCMarkAssistEnd dt=5 +HeapAlloc dt=54 heapalloc_value=108264736 +HeapAlloc dt=117 heapalloc_value=108527008 +HeapAlloc dt=77 heapalloc_value=108783776 +HeapAlloc dt=90 heapalloc_value=109036320 +HeapAlloc dt=77 heapalloc_value=109355808 +HeapAlloc dt=106 heapalloc_value=109678240 +HeapAlloc dt=70 heapalloc_value=110030624 +HeapAlloc dt=90 heapalloc_value=110205056 +HeapAlloc dt=51 heapalloc_value=110347136 +HeapAlloc dt=63 heapalloc_value=110588800 +HeapAlloc dt=69 heapalloc_value=110912384 +HeapAlloc dt=42 heapalloc_value=111111808 +HeapAlloc dt=105 heapalloc_value=111452032 +HeapAlloc dt=89 heapalloc_value=111822720 +HeapAlloc dt=106 heapalloc_value=112260352 +HeapAlloc dt=55 heapalloc_value=112397056 +HeapAlloc dt=62 heapalloc_value=112682368 +HeapAlloc dt=137 heapalloc_value=113281920 +GCSweepBegin dt=50 stack=28 +GCSweepEnd dt=8 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=4 heapalloc_value=113424000 +HeapAlloc dt=92 heapalloc_value=113908096 +GCSweepBegin dt=145 stack=31 +EventBatch gen=3 m=169394 time=28114950898962 size=373 +ProcStatus dt=1 p=20 pstatus=1 +GoStatus dt=4 g=108 m=169394 gstatus=2 +GCMarkAssistActive dt=1 g=108 +GCMarkAssistEnd dt=2 +HeapAlloc dt=25 heapalloc_value=191102400 +GCMarkAssistBegin dt=104 stack=3 +GCMarkAssistEnd dt=2445 +HeapAlloc dt=47 heapalloc_value=191372736 +GCMarkAssistBegin dt=11 stack=3 +GoBlock dt=1789 reason_string=13 stack=11 +GoUnblock dt=19 g=22 g_seq=3 stack=0 +GoStart dt=7 g=22 g_seq=4 +GoLabel dt=1 label_string=2 +GoBlock dt=3342 reason_string=15 stack=5 +GoUnblock dt=2752 g=71 g_seq=1 stack=0 +GoStart dt=7 g=71 g_seq=2 +GoLabel dt=1 label_string=4 +GoBlock dt=269 reason_string=15 stack=5 +GoStart dt=4308 g=111 g_seq=3 +GCMarkAssistEnd dt=7 +HeapAlloc dt=58 heapalloc_value=191888832 +GCMarkAssistBegin dt=42 stack=3 +GoBlock dt=148 reason_string=13 stack=11 +GoUnblock dt=1120 g=72 g_seq=25 stack=0 +GoStart dt=5 g=72 g_seq=26 +GoLabel dt=1 label_string=4 +GoBlock dt=640 reason_string=15 stack=5 +GoStart dt=1105 g=102 g_seq=2 +GoStatus dt=19 g=117 m=18446744073709551615 gstatus=4 +GoUnblock dt=4 g=117 g_seq=1 stack=10 +GCMarkAssistBegin dt=13 stack=3 +GoBlock dt=32 reason_string=13 stack=11 +GoStart dt=8 g=117 g_seq=2 +GoStatus dt=19 g=128 m=18446744073709551615 gstatus=4 +GoUnblock dt=2 g=128 g_seq=1 stack=10 +GCMarkAssistBegin dt=5 stack=3 +GoBlock dt=15 reason_string=13 stack=11 +GoStart dt=5 g=128 g_seq=2 +GoStatus dt=12 g=92 m=18446744073709551615 gstatus=4 +GoUnblock dt=1 g=92 g_seq=1 stack=10 +GCMarkAssistBegin dt=9 stack=3 +GoBlock dt=14 reason_string=13 stack=11 +GoStart dt=7 g=92 g_seq=2 +GoStatus dt=17 g=101 m=18446744073709551615 gstatus=4 +GoUnblock dt=1 g=101 g_seq=1 stack=10 +GCMarkAssistBegin dt=7 stack=3 +GoBlock dt=10 reason_string=13 stack=11 +GoStart dt=5 g=101 g_seq=2 +GoStatus dt=11 g=99 m=18446744073709551615 gstatus=4 +GoUnblock dt=1 g=99 g_seq=1 stack=10 +GCMarkAssistBegin dt=8 stack=3 +GoBlock dt=15 reason_string=13 stack=11 +GoStart dt=6 g=99 g_seq=2 +GoStatus dt=11 g=89 m=18446744073709551615 gstatus=4 +GoUnblock dt=1 g=89 g_seq=1 stack=10 +GCMarkAssistBegin dt=10 stack=3 +GoBlock dt=15 reason_string=13 stack=11 +GoStart dt=4 g=89 g_seq=2 +GoStatus dt=11 g=124 m=18446744073709551615 gstatus=4 +GoUnblock dt=2 g=124 g_seq=1 stack=10 +GCMarkAssistBegin dt=8 stack=3 +GoBlock dt=34 reason_string=13 stack=11 +GoStart dt=5 g=124 g_seq=2 +GoStatus dt=10 g=96 m=18446744073709551615 gstatus=4 +GoUnblock dt=1 g=96 g_seq=1 stack=10 +GCMarkAssistBegin dt=4 stack=3 +GoBlock dt=14 reason_string=13 stack=11 +GoStart dt=4 g=96 g_seq=2 +GCMarkAssistBegin dt=8 stack=3 +GoBlock dt=22 reason_string=13 stack=11 +ProcStop dt=16 +EventBatch gen=3 m=169393 time=28114950894837 size=271 +ProcStatus dt=2 p=16 pstatus=1 +GoStatus dt=2 g=69 m=169393 gstatus=2 +GoBlock dt=122 reason_string=15 stack=5 +GoStatus dt=2224 g=83 m=169393 gstatus=1 +GoStart dt=1 g=83 g_seq=1 +GoStatus dt=33 g=121 m=18446744073709551615 gstatus=4 +GoUnblock dt=10 g=121 g_seq=1 stack=10 +GCMarkAssistBegin dt=16 stack=3 +GoStop dt=620 reason_string=20 stack=9 +GoStart dt=11 g=121 g_seq=2 +GoStatus dt=18 g=110 m=18446744073709551615 gstatus=4 +GoUnblock dt=3 g=110 g_seq=1 stack=10 +GCMarkAssistBegin dt=12 stack=3 +GoStop dt=1840 reason_string=20 stack=9 +GoStart dt=16 g=110 g_seq=2 +GoStatus dt=19 g=125 m=18446744073709551615 gstatus=4 +GoUnblock dt=3 g=125 g_seq=1 stack=10 +GCMarkAssistBegin dt=10 stack=3 +GoBlock dt=1799 reason_string=13 stack=11 +GoStart dt=1317 g=127 g_seq=2 +GoStatus dt=21 g=116 m=18446744073709551615 gstatus=4 +GoUnblock dt=9 g=116 g_seq=1 stack=10 +GCMarkAssistBegin dt=16 stack=3 +GoBlock dt=473 reason_string=13 stack=11 +GoStart dt=28 g=116 g_seq=2 +GoStatus dt=14 g=119 m=18446744073709551615 gstatus=4 +GoUnblock dt=3 g=119 g_seq=1 stack=10 +GCMarkAssistBegin dt=12 stack=3 +GoStop dt=570 reason_string=20 stack=9 +GoStart dt=24 g=119 g_seq=2 +GoStatus dt=18 g=95 m=18446744073709551615 gstatus=4 +GoUnblock dt=3 g=95 g_seq=1 stack=10 +GCMarkAssistBegin dt=11 stack=3 +GoBlock dt=5206 reason_string=13 stack=11 +ProcStop dt=2547 +ProcStart dt=26 p=16 p_seq=1 +GoUnblock dt=87 g=58 g_seq=15 stack=0 +GoStart dt=8 g=58 g_seq=16 +GoLabel dt=1 label_string=4 +GoBlock dt=579 reason_string=15 stack=5 +GoUnblock dt=23 g=69 g_seq=15 stack=0 +GoStart dt=5 g=69 g_seq=16 +GoLabel dt=1 label_string=2 +GoBlock dt=1028 reason_string=15 stack=5 +GoUnblock dt=2356 g=14 g_seq=11 stack=0 +GoStart dt=6 g=14 g_seq=12 +GoLabel dt=1 label_string=4 +GoBlock dt=1282 reason_string=15 stack=5 ProcStop dt=8 -EventBatch gen=6 m=298956 time=22352100058565 size=191 -ProcStatus dt=1 p=38 pstatus=2 -ProcStart dt=1 p=38 p_seq=1 -GoStart dt=1643 g=114 g_seq=2 -GoStatus dt=30 g=83 m=18446744073709551615 gstatus=4 -GoUnblock dt=11 g=83 g_seq=1 stack=5 -GCMarkAssistBegin dt=20 stack=2 -GCMarkAssistEnd dt=3521 -HeapAlloc dt=61 heapalloc_value=198087000 -HeapAlloc dt=58 heapalloc_value=198144344 -HeapAlloc dt=269 heapalloc_value=198422872 -HeapAlloc dt=230 heapalloc_value=198701400 -HeapAlloc dt=254 heapalloc_value=199061848 -HeapAlloc dt=9896 heapalloc_value=199938392 -HeapAlloc dt=97 heapalloc_value=200069464 -GoStop dt=5718 reason_string=16 stack=3 -GoUnblock dt=11407 g=16 g_seq=5 stack=0 -GoStart dt=6 g=16 g_seq=6 +EventBatch gen=3 m=169392 time=28114950898262 size=651 +ProcStatus dt=1 p=3 pstatus=1 +GoStatus dt=1 g=106 m=169392 gstatus=2 +GCMarkAssistActive dt=1 g=106 +GCMarkAssistEnd dt=3 +HeapAlloc dt=34 heapalloc_value=190807488 +HeapAlloc dt=125 heapalloc_value=190832064 +GCMarkAssistBegin dt=46 stack=3 +GoBlock dt=1002 reason_string=13 stack=11 +GoStart dt=28 g=82 g_seq=2 +GoBlock dt=1446 reason_string=13 stack=11 +GoStart dt=34 g=120 g_seq=3 +GCMarkAssistEnd dt=2 +HeapAlloc dt=32 heapalloc_value=191282624 +GCMarkAssistBegin dt=115 stack=3 +GoBlock dt=25 reason_string=13 stack=11 +GoStart dt=17 g=112 g_seq=2 +GoBlock dt=2074 reason_string=13 stack=11 +GoUnblock dt=2604 g=24 g_seq=5 stack=0 +GoStart dt=7 g=24 g_seq=6 +GoLabel dt=2 label_string=4 +GoBlock dt=278 reason_string=15 stack=5 +GoUnblock dt=2267 g=58 g_seq=5 stack=0 +GoStart dt=9 g=58 g_seq=6 +GoLabel dt=1 label_string=4 +GoBlock dt=316 reason_string=15 stack=5 +GoUnblock dt=1167 g=24 g_seq=7 stack=0 +GoStart dt=6 g=24 g_seq=8 +GoLabel dt=1 label_string=4 +GoBlock dt=171 reason_string=15 stack=5 +GoUnblock dt=1155 g=71 g_seq=7 stack=0 +GoStart dt=6 g=71 g_seq=8 +GoLabel dt=1 label_string=4 +GoBlock dt=32 reason_string=15 stack=5 +GoStart dt=3316 g=109 g_seq=2 +GoStatus dt=28 g=114 m=18446744073709551615 gstatus=4 +GoUnblock dt=8 g=114 g_seq=1 stack=10 +GCMarkAssistBegin dt=18 stack=3 +GoStop dt=3860 reason_string=20 stack=9 +GoUnblock dt=14 g=57 g_seq=31 stack=0 +GoStart dt=5 g=57 g_seq=32 +GoLabel dt=3 label_string=2 +GoBlock dt=3324 reason_string=15 stack=5 +GoUnblock dt=97 g=24 g_seq=25 stack=0 +GoStart dt=6 g=24 g_seq=26 +GoLabel dt=1 label_string=4 +GoBlock dt=1146 reason_string=15 stack=5 +GoUnblock dt=73 g=24 g_seq=27 stack=0 +GoStart dt=4 g=24 g_seq=28 +GoLabel dt=1 label_string=4 +GoUnblock dt=2655 g=81 g_seq=4 stack=12 +GoBlock dt=402 reason_string=15 stack=5 +GoUnblock dt=9 g=24 g_seq=29 stack=0 +GoStart dt=7 g=24 g_seq=30 GoLabel dt=1 label_string=2 -GoBlock dt=579 reason_string=10 stack=13 -GoStart dt=12 g=91 g_seq=3 -HeapAlloc dt=36 heapalloc_value=203001432 -HeapAlloc dt=65 heapalloc_value=203058776 -GoStop dt=64200 reason_string=16 stack=3 -GoStart dt=30 g=113 g_seq=4 -HeapAlloc dt=49 heapalloc_value=205634648 -GoStop dt=58413 reason_string=16 stack=3 -GoStart dt=23 g=87 g_seq=4 -GCMarkAssistBegin dt=22 stack=2 -GoBlock dt=50 reason_string=10 stack=19 -GoStart dt=12 g=113 g_seq=5 -HeapAlloc dt=29475 heapalloc_value=213006872 -GoStop dt=21 reason_string=16 stack=3 -GoStart dt=138 g=55 g_seq=9 -HeapAlloc dt=3368 heapalloc_value=213326360 -GoStop dt=5812 reason_string=16 stack=6 -ProcStop dt=10 -EventBatch gen=6 m=298955 time=22352100052620 size=567 -ProcStatus dt=1 p=22 pstatus=1 -GoStatus dt=4 g=112 m=298955 gstatus=2 -GCMarkAssistActive dt=1 g=112 +GoBlock dt=492 reason_string=15 stack=5 +GoUnblock dt=21 g=69 g_seq=27 stack=0 +GoStart dt=6 g=69 g_seq=28 +GoLabel dt=1 label_string=2 +GoBlock dt=20 reason_string=15 stack=5 +GoUnblock dt=11 g=69 g_seq=29 stack=0 +GoStart dt=3 g=69 g_seq=30 +GoLabel dt=1 label_string=2 +GoBlock dt=459 reason_string=15 stack=5 +GoStart dt=168 g=116 g_seq=6 +GCMarkAssistEnd dt=8 +HeapAlloc dt=61 heapalloc_value=192232224 +GCMarkAssistBegin dt=39 stack=3 +GoBlock dt=2360 reason_string=13 stack=11 +ProcStop dt=53 +ProcStart dt=14760 p=10 p_seq=2 +GoStart dt=211 g=99 g_seq=5 +GCMarkAssistBegin dt=93 stack=3 +GoBlock dt=33 reason_string=13 stack=11 +GoStart dt=9 g=120 g_seq=6 +GCMarkAssistBegin dt=78 stack=3 +GoBlock dt=102 reason_string=13 stack=11 +GoStart dt=31 g=108 g_seq=2 +GCMarkAssistEnd dt=6 +HeapAlloc dt=307 heapalloc_value=194853592 +GoStop dt=7166 reason_string=16 stack=6 +GoStart dt=86 g=128 g_seq=6 +HeapAlloc dt=4873 heapalloc_value=196688336 +GoStop dt=12 reason_string=16 stack=6 +ProcStop dt=395 +ProcStart dt=8670 p=3 p_seq=2 +GoStart dt=193 g=93 g_seq=9 +GCMarkAssistEnd dt=7 +HeapAlloc dt=78 heapalloc_value=104465440 +HeapAlloc dt=122 heapalloc_value=104583584 +HeapAlloc dt=92 heapalloc_value=104769312 +HeapAlloc dt=127 heapalloc_value=104935968 +GCSweepBegin dt=109 stack=28 +GCSweepEnd dt=9 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=2 heapalloc_value=105138720 +HeapAlloc dt=77 heapalloc_value=105373856 +GCSweepBegin dt=157 stack=28 +GCSweepEnd dt=8 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=3 heapalloc_value=105708448 +GCSweepBegin dt=56 stack=28 +GCSweepEnd dt=11 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=4 heapalloc_value=105880480 +GCSweepBegin dt=48 stack=28 +GCSweepEnd dt=10 swept_value=32768 reclaimed_value=32768 +HeapAlloc dt=4 heapalloc_value=106124192 +GCSweepBegin dt=79 stack=28 +GCSweepEnd dt=7 swept_value=8192 reclaimed_value=8192 +HeapAlloc dt=2 heapalloc_value=106283168 +HeapAlloc dt=98 heapalloc_value=106567968 +HeapAlloc dt=116 heapalloc_value=107070496 +HeapAlloc dt=30 heapalloc_value=107146272 +HeapAlloc dt=105 heapalloc_value=107517728 +HeapAlloc dt=169 heapalloc_value=108084512 +HeapAlloc dt=187 heapalloc_value=108649888 +HeapAlloc dt=158 heapalloc_value=109200160 +HeapAlloc dt=200 heapalloc_value=109872160 +GCSweepBegin dt=116 stack=28 +GCSweepEnd dt=9 swept_value=24576 reclaimed_value=24576 +HeapAlloc dt=3 heapalloc_value=110229632 +HeapAlloc dt=54 heapalloc_value=110441344 +HeapAlloc dt=76 heapalloc_value=110711680 +HeapAlloc dt=100 heapalloc_value=111216768 +HeapAlloc dt=156 heapalloc_value=111708032 +HeapAlloc dt=55 heapalloc_value=111972224 +HeapAlloc dt=122 heapalloc_value=112391424 +HeapAlloc dt=160 heapalloc_value=113099392 +HeapAlloc dt=191 heapalloc_value=113713536 +HeapAlloc dt=158 heapalloc_value=114362368 +GCSweepBegin dt=88 stack=28 +GCSweepEnd dt=14 swept_value=16384 reclaimed_value=16384 +HeapAlloc dt=9 heapalloc_value=114520320 +HeapAlloc dt=56 heapalloc_value=114636672 +GCSweepBegin dt=180 stack=27 +EventBatch gen=3 m=169390 time=28114950895313 size=834 +ProcStatus dt=1 p=27 pstatus=1 +GoStatus dt=3 g=82 m=169390 gstatus=2 +GCMarkAssistActive dt=1 g=82 GCMarkAssistEnd dt=2 -HeapAlloc dt=37 heapalloc_value=188907736 -GoStop dt=31 reason_string=16 stack=3 -GoStatus dt=9 g=131 m=18446744073709551615 gstatus=4 -GoUnblock dt=4 g=131 g_seq=1 stack=0 -GoStart dt=5 g=131 g_seq=2 -GoSyscallBegin dt=71 stack=4 -GoSyscallEnd dt=202 -GoSyscallBegin dt=32 stack=4 -GoSyscallEnd dt=71 -GoSyscallBegin dt=14 stack=4 -GoSyscallEnd dt=74 -GoSyscallBegin dt=14 stack=4 -GoSyscallEnd dt=65 -GoSyscallBegin dt=12 stack=4 -GoSyscallEnd dt=67 -GoSyscallBegin dt=12 stack=4 +HeapAlloc dt=28 heapalloc_value=190143936 +HeapAlloc dt=270 heapalloc_value=190201280 +HeapAlloc dt=96 heapalloc_value=190209472 +HeapAlloc dt=29 heapalloc_value=190258624 +HeapAlloc dt=107 heapalloc_value=190356928 +GCMarkAssistBegin dt=57 stack=3 +GCMarkAssistEnd dt=502 +HeapAlloc dt=27 heapalloc_value=190430656 +GoStop dt=26 reason_string=16 stack=4 +GoStart dt=12 g=131 g_seq=3 +GoSyscallBegin dt=17 p_seq=1 stack=7 +GoSyscallEnd dt=205 +GoSyscallBegin dt=19 p_seq=2 stack=7 +GoSyscallEnd dt=2580 +GoSyscallBegin dt=16 p_seq=3 stack=7 GoSyscallEnd dt=71 -GoSyscallBegin dt=14 stack=4 -GoSyscallEnd dt=66 -GoSyscallBegin dt=16 stack=4 -GoSyscallEnd dt=66 -GoSyscallBegin dt=14 stack=4 +GoSyscallBegin dt=15 p_seq=4 stack=7 +GoSyscallEnd dt=72 +GoSyscallBegin dt=25 p_seq=5 stack=7 +GoSyscallEnd dt=76 +GoSyscallBegin dt=12 p_seq=6 stack=7 +GoSyscallEnd dt=69 +GoSyscallBegin dt=11 p_seq=7 stack=7 +GoSyscallEnd dt=62 +GoSyscallBegin dt=13 p_seq=8 stack=7 GoSyscallEnd dt=67 -GoSyscallBegin dt=13 stack=4 -GoSyscallEnd dt=345 -GoSyscallBegin dt=15 stack=4 -GoSyscallEnd dt=71 -GoSyscallBegin dt=13 stack=4 -GoSyscallEnd dt=63 -GoSyscallBegin dt=14 stack=4 -GoSyscallEnd dt=63 -GoSyscallBegin dt=9 stack=4 -GoSyscallEnd dt=64 -GoSyscallBegin dt=12 stack=4 +GoSyscallBegin dt=16 p_seq=9 stack=7 GoSyscallEnd dt=64 -GoSyscallBegin dt=17 stack=4 -GoSyscallEnd dt=64 -GoSyscallBegin dt=12 stack=4 -GoSyscallEnd dt=69 -GoSyscallBegin dt=16 stack=4 -GoSyscallEnd dt=69 -GoSyscallBegin dt=11 stack=4 +GoSyscallBegin dt=12 p_seq=10 stack=7 +GoSyscallEnd dt=65 +GoSyscallBegin dt=14 p_seq=11 stack=7 +GoSyscallEnd dt=226 +GoSyscallBegin dt=14 p_seq=12 stack=7 GoSyscallEnd dt=69 -GoSyscallBegin dt=13 stack=4 -GoSyscallEnd dt=169 -GoSyscallBegin dt=14 stack=4 +GoSyscallBegin dt=17 p_seq=13 stack=7 +GoSyscallEnd dt=72 +GoSyscallBegin dt=15 p_seq=14 stack=7 +GoSyscallEnd dt=66 +GoSyscallBegin dt=18 p_seq=15 stack=7 +GoSyscallEnd dt=63 +GoSyscallBegin dt=13 p_seq=16 stack=7 GoSyscallEnd dt=69 -GoSyscallBegin dt=11 stack=4 -GoSyscallEnd dt=65 -GoSyscallBegin dt=14 stack=4 +GoSyscallBegin dt=17 p_seq=17 stack=7 GoSyscallEnd dt=66 -GoSyscallBegin dt=27 stack=4 -GoSyscallEnd dt=64 -GoSyscallBegin dt=15 stack=4 -GoSyscallEnd dt=71 -GoSyscallBegin dt=25 stack=4 -GoSyscallEnd dt=70 -GoSyscallBegin dt=14 stack=4 +GoSyscallBegin dt=109 p_seq=18 stack=7 +GoSyscallEnd dt=73 +GoSyscallBegin dt=13 p_seq=19 stack=7 +GoSyscallEnd dt=68 +GoSyscallBegin dt=16 p_seq=20 stack=7 GoSyscallEnd dt=63 -GoSyscallBegin dt=11 stack=4 +GoSyscallBegin dt=15 p_seq=21 stack=7 +GoSyscallEnd dt=82 +GoSyscallBegin dt=11 p_seq=22 stack=7 +GoSyscallEnd dt=177 +GoSyscallBegin dt=14 p_seq=23 stack=7 GoSyscallEnd dt=62 -GoSyscallBegin dt=12 stack=4 -GoSyscallEnd dt=168 -GoSyscallBegin dt=13 stack=4 -GoSyscallEnd dt=68 -GoSyscallBegin dt=13 stack=4 -GoSyscallEnd dt=66 -GoSyscallBegin dt=12 stack=4 -GoSyscallEnd dt=66 -GoSyscallBegin dt=10 stack=4 +GoSyscallBegin dt=13 p_seq=24 stack=7 +GoSyscallEnd dt=90 +GoSyscallBegin dt=11 p_seq=25 stack=7 GoSyscallEnd dt=69 -GoSyscallBegin dt=14 stack=4 -GoSyscallEnd dt=65 -GoSyscallBegin dt=15 stack=4 -GoSyscallEnd dt=64 -GoSyscallBegin dt=13 stack=4 -GoSyscallEnd dt=64 -GoSyscallBegin dt=9 stack=4 -GoSyscallEnd dt=61 -GoSyscallBegin dt=10 stack=4 -GoSyscallEnd dt=65 -GoSyscallBegin dt=12 stack=4 +GoSyscallBegin dt=13 p_seq=26 stack=7 GoSyscallEnd dt=65 -GoSyscallBegin dt=14 stack=4 -GoSyscallEnd dt=64 -GoSyscallBegin dt=11 stack=4 -GoSyscallEnd dt=64 -GoSyscallBegin dt=10 stack=4 -GoSyscallEnd dt=167 -GoSyscallBegin dt=18 stack=4 -GoSyscallEnd dt=65 -GoSyscallBegin dt=12 stack=4 -GoSyscallEnd dt=67 -GoSyscallBegin dt=9 stack=4 -GoSyscallEnd dt=63 -GoSyscallBegin dt=15 stack=4 -GoSyscallEnd dt=67 -GoSyscallBegin dt=13 stack=4 -GoSyscallEnd dt=212 -GoSyscallBegin dt=16 stack=4 +GoSyscallBegin dt=15 p_seq=27 stack=7 GoSyscallEnd dt=72 -GoSyscallBegin dt=11 stack=4 -GoSyscallEnd dt=165 -GoSyscallBegin dt=17 stack=4 -GoSyscallEnd dt=71 -GoBlock dt=17 reason_string=15 stack=8 -GoStart dt=1433 g=90 g_seq=2 -GoStatus dt=39 g=91 m=18446744073709551615 gstatus=4 -GoUnblock dt=17 g=91 g_seq=1 stack=5 -GCMarkAssistBegin dt=19 stack=2 -GCMarkAssistEnd dt=727 -HeapAlloc dt=84 heapalloc_value=194361432 -HeapAlloc dt=197 heapalloc_value=194656344 -GCMarkAssistBegin dt=166 stack=2 -GCMarkAssistEnd dt=1362 -HeapAlloc dt=53 heapalloc_value=196202840 -HeapAlloc dt=209 heapalloc_value=196424024 -HeapAlloc dt=75 heapalloc_value=196530520 -GCMarkAssistBegin dt=232 stack=2 -GCMarkAssistEnd dt=1810 -HeapAlloc dt=38 heapalloc_value=198537560 -HeapAlloc dt=99 heapalloc_value=198644056 -HeapAlloc dt=104 heapalloc_value=198709592 -HeapAlloc dt=75 heapalloc_value=198775128 -HeapAlloc dt=71 heapalloc_value=198938968 -HeapAlloc dt=30018 heapalloc_value=203148888 -GoStop dt=20 reason_string=16 stack=3 -GoUnblock dt=15 g=65 g_seq=15 stack=0 -GoStart dt=9 g=65 g_seq=16 -GoLabel dt=2 label_string=2 -GoBlock dt=8230 reason_string=15 stack=7 -GoUnblock dt=12 g=65 g_seq=17 stack=0 -GoStart dt=4 g=65 g_seq=18 -GoLabel dt=1 label_string=2 -GoBlock dt=202 reason_string=15 stack=7 -GoUnblock dt=12 g=47 g_seq=17 stack=0 -GoStart dt=1 g=47 g_seq=18 -GoLabel dt=1 label_string=2 -GoBlock dt=3053 reason_string=15 stack=7 -GoUnblock dt=11 g=47 g_seq=19 stack=0 -GoStart dt=7 g=47 g_seq=20 -GoLabel dt=1 label_string=2 -GoBlock dt=1447 reason_string=15 stack=7 -GoStart dt=10 g=106 g_seq=2 -HeapAlloc dt=130 heapalloc_value=203656792 -GoStop dt=49161 reason_string=16 stack=3 -GoStart dt=22 g=56 g_seq=2 -HeapAlloc dt=36 heapalloc_value=205724760 -GoStop dt=58278 reason_string=16 stack=3 -GoStart dt=26 g=56 g_seq=3 -HeapAlloc dt=75 heapalloc_value=209861720 -GoStop dt=29113 reason_string=16 stack=3 -GoStart dt=229 g=56 g_seq=4 -HeapAlloc dt=4776 heapalloc_value=213842456 -GoStop dt=20 reason_string=16 stack=3 -ProcStop dt=4494 -EventBatch gen=6 m=298954 time=22352100066840 size=175 -ProcStatus dt=2 p=41 pstatus=2 -ProcStart dt=1 p=41 p_seq=1 -GoUnblock dt=15 g=131 g_seq=3 stack=0 -GoStart dt=187 g=131 g_seq=4 -GoSyscallBegin dt=54 stack=4 -GoSyscallEnd dt=344 -GoSyscallBegin dt=19 stack=4 -GoSyscallEnd dt=475 -GoBlock dt=22 reason_string=15 stack=8 -GoStart dt=1623 g=58 g_seq=2 -GoStatus dt=19 g=109 m=18446744073709551615 gstatus=4 -GoUnblock dt=6 g=109 g_seq=1 stack=5 -HeapAlloc dt=34 heapalloc_value=199749976 -HeapAlloc dt=6278 heapalloc_value=200266072 -GoStop dt=11153 reason_string=16 stack=3 -GoUnblock dt=25 g=40 g_seq=3 stack=0 -GoStart dt=10 g=40 g_seq=4 +GoSyscallBegin dt=15 p_seq=28 stack=7 +GoSyscallEnd dt=73 +GoSyscallBegin dt=18 p_seq=29 stack=7 +GoSyscallEnd dt=80 +GoSyscallBegin dt=21 p_seq=30 stack=7 +GoSyscallEnd dt=72 +GoSyscallBegin dt=17 p_seq=31 stack=7 +GoSyscallEnd dt=67 +GoSyscallBegin dt=12 p_seq=32 stack=7 +GoSyscallEnd dt=171 +GoSyscallBegin dt=16 p_seq=33 stack=7 +GoSyscallEnd dt=76 +GoSyscallBegin dt=18 p_seq=34 stack=7 +GoSyscallEnd dt=78 +GoSyscallBegin dt=13 p_seq=35 stack=7 +GoSyscallEnd dt=77 +GoSyscallBegin dt=20 p_seq=36 stack=7 +GoSyscallEnd dt=77 +GoBlock dt=16 reason_string=15 stack=2 +GoUnblock dt=1400 g=54 g_seq=3 stack=0 +GoStart dt=8 g=54 g_seq=4 +GoLabel dt=1 label_string=4 +GoBlock dt=2659 reason_string=15 stack=5 +GoUnblock dt=13 g=22 g_seq=5 stack=0 +GoStart dt=5 g=22 g_seq=6 +GoLabel dt=1 label_string=2 +GoBlock dt=2498 reason_string=15 stack=5 +GoUnblock dt=10 g=22 g_seq=7 stack=0 +GoStart dt=7 g=22 g_seq=8 GoLabel dt=2 label_string=2 -GoBlock dt=168 reason_string=15 stack=7 -GoUnblock dt=10 g=40 g_seq=5 stack=0 -GoStart dt=3 g=40 g_seq=6 -GoLabel dt=1 label_string=2 -GoBlock dt=151 reason_string=15 stack=7 -GoStart dt=10 g=64 g_seq=2 -HeapAlloc dt=43 heapalloc_value=202002008 -HeapAlloc dt=128 heapalloc_value=202165848 -GoStop dt=48234 reason_string=16 stack=3 -GoStart dt=25 g=64 g_seq=3 -HeapAlloc dt=81 heapalloc_value=204475800 -HeapAlloc dt=45 heapalloc_value=204516760 -GoStop dt=53879 reason_string=16 stack=3 -GoStart dt=73 g=114 g_seq=5 -HeapAlloc dt=49034 heapalloc_value=212023832 -GoStop dt=20 reason_string=16 stack=3 -ProcStop dt=101 -EventBatch gen=6 m=298953 time=22352100053030 size=226 -ProcStatus dt=3 p=34 pstatus=1 -GoStatus dt=3 g=106 m=298953 gstatus=1 -GoStart dt=3 g=106 g_seq=1 -GoStatus dt=27 g=99 m=18446744073709551615 gstatus=4 -GoUnblock dt=16 g=99 g_seq=1 stack=5 -HeapAlloc dt=75 heapalloc_value=189038808 -HeapAlloc dt=107 heapalloc_value=189153496 -HeapAlloc dt=560 heapalloc_value=189718360 -GCMarkAssistBegin dt=75 stack=2 -GCMarkAssistEnd dt=4456 -HeapAlloc dt=87 heapalloc_value=192804952 -HeapAlloc dt=128 heapalloc_value=192976984 -HeapAlloc dt=158 heapalloc_value=193132632 -GCMarkAssistBegin dt=44 stack=2 -GCMarkAssistEnd dt=2106 -HeapAlloc dt=57 heapalloc_value=195375448 -HeapAlloc dt=153 heapalloc_value=195580248 -GCMarkAssistBegin dt=104 stack=2 -GCMarkAssistEnd dt=3936 -HeapAlloc dt=81 heapalloc_value=199643480 -HeapAlloc dt=11145 heapalloc_value=200741208 -GoStop dt=17413 reason_string=16 stack=3 -GoUnblock dt=17 g=41 g_seq=9 stack=0 -GoStart dt=10 g=41 g_seq=10 -GoLabel dt=1 label_string=2 -GoBlock dt=8939 reason_string=15 stack=7 -GoUnblock dt=16 g=41 g_seq=11 stack=0 -GoStart dt=4 g=41 g_seq=12 -GoLabel dt=1 label_string=2 -GoBlock dt=3754 reason_string=15 stack=7 -GoUnblock dt=14 g=41 g_seq=13 stack=0 -GoStart dt=18 g=41 g_seq=14 -GoLabel dt=1 label_string=2 -GoBlock dt=2612 reason_string=15 stack=7 -GoUnblock dt=5 g=41 g_seq=15 stack=0 -GoStart dt=3 g=41 g_seq=16 -GoLabel dt=1 label_string=2 -GoBlock dt=454 reason_string=15 stack=7 -GoStart dt=14 g=107 g_seq=2 -HeapAlloc dt=52 heapalloc_value=204017240 -GoStop dt=61524 reason_string=16 stack=3 -GoStart dt=37 g=90 g_seq=4 -HeapAlloc dt=42 heapalloc_value=206339160 -GoStop dt=54917 reason_string=16 stack=3 -ProcStop dt=306 -EventBatch gen=6 m=298952 time=22352100054724 size=262 -ProcStatus dt=1 p=13 pstatus=1 -GoStatus dt=2 g=89 m=298952 gstatus=2 -GCMarkAssistActive dt=1 g=89 -GCMarkAssistEnd dt=3 -HeapAlloc dt=35 heapalloc_value=190143576 -HeapAlloc dt=129 heapalloc_value=190282840 -HeapAlloc dt=326 heapalloc_value=190676056 -GCMarkAssistBegin dt=104 stack=2 -GCMarkAssistEnd dt=3450 -HeapAlloc dt=21 heapalloc_value=193189976 -HeapAlloc dt=139 heapalloc_value=193329240 -GCMarkAssistBegin dt=62 stack=2 -GCMarkAssistEnd dt=1487 -HeapAlloc dt=84 heapalloc_value=195064152 -GCMarkAssistBegin dt=158 stack=2 -GCMarkAssistEnd dt=3005 -HeapAlloc dt=61 heapalloc_value=197996888 -HeapAlloc dt=174 heapalloc_value=198168920 -HeapAlloc dt=34 heapalloc_value=198267224 -HeapAlloc dt=113 heapalloc_value=198308184 -HeapAlloc dt=81 heapalloc_value=198488408 -HeapAlloc dt=178 heapalloc_value=198668632 -HeapAlloc dt=192 heapalloc_value=198881624 -HeapAlloc dt=11450 heapalloc_value=200372568 -GoStop dt=16 reason_string=16 stack=3 -GoStatus dt=9299 g=40 m=18446744073709551615 gstatus=4 -GoUnblock dt=4 g=40 g_seq=1 stack=0 -GoStart dt=6 g=40 g_seq=2 -GoLabel dt=1 label_string=2 -GoBlock dt=1400 reason_string=15 stack=7 -GoStart dt=14 g=110 g_seq=3 -HeapAlloc dt=180 heapalloc_value=201642328 -GoStop dt=43649 reason_string=16 stack=3 -GoUnblock dt=20 g=41 g_seq=21 stack=0 -GoStart dt=6 g=41 g_seq=22 -GoLabel dt=3 label_string=2 -GoBlock dt=2073 reason_string=15 stack=7 -GoUnblock dt=11 g=41 g_seq=23 stack=0 -GoStart dt=4 g=41 g_seq=24 -GoLabel dt=1 label_string=2 -GoBlock dt=21 reason_string=15 stack=7 -GoStart dt=5 g=109 g_seq=4 -HeapAlloc dt=46 heapalloc_value=204353112 -GoStop dt=55612 reason_string=16 stack=3 -GoStart dt=25 g=96 g_seq=4 -HeapAlloc dt=582 heapalloc_value=207805528 -GoStop dt=42839 reason_string=16 stack=3 -GoStart dt=22 g=96 g_seq=5 -HeapAlloc dt=13877 heapalloc_value=213072408 -GoStop dt=12 reason_string=16 stack=3 -ProcStop dt=98 -EventBatch gen=6 m=298951 time=22352100068109 size=116 -ProcStatus dt=2 p=8 pstatus=1 -GoStatus dt=1 g=65 m=298951 gstatus=2 -GoBlock dt=10 reason_string=15 stack=7 -GoUnblock dt=15 g=65 g_seq=1 stack=0 -GoStart dt=5 g=65 g_seq=2 -GoLabel dt=1 label_string=2 -GoBlock dt=6954 reason_string=15 stack=7 -GoStart dt=11496 g=84 g_seq=1 -HeapAlloc dt=43795 heapalloc_value=204181080 -GoStop dt=21 reason_string=16 stack=3 -GoUnblock dt=20 g=41 g_seq=17 stack=0 -GoStart dt=8 g=41 g_seq=18 -GoLabel dt=1 label_string=2 -GoBlock dt=92 reason_string=15 stack=7 -GoUnblock dt=5 g=41 g_seq=19 stack=0 -GoStart dt=1 g=41 g_seq=20 -GoLabel dt=1 label_string=2 -GoBlock dt=9 reason_string=15 stack=7 -GoStart dt=4 g=84 g_seq=2 -HeapAlloc dt=57645 heapalloc_value=207502424 -GoStop dt=19 reason_string=16 stack=3 -GoStart dt=37 g=116 g_seq=4 -HeapAlloc dt=548 heapalloc_value=207756376 -GoStop dt=42819 reason_string=16 stack=3 -ProcStop dt=80 -EventBatch gen=6 m=298950 time=22352100135980 size=90 -ProcStart dt=2 p=15 p_seq=1 -GoStart dt=8 g=42 g_seq=6 -GoUnblock dt=90894 g=130 g_seq=6 stack=20 -STWBegin dt=21516 kind_string=21 stack=22 -GoUnblock dt=10613 g=107 g_seq=6 stack=23 -GoUnblock dt=28 g=11 g_seq=4 stack=24 -HeapAlloc dt=52 heapalloc_value=108748264 -GoStatus dt=12 g=3 m=18446744073709551615 gstatus=4 -GoUnblock dt=7 g=3 g_seq=1 stack=25 -GCEnd dt=3 gc_seq=8 -HeapGoal dt=5 heapgoal_value=217937288 -ProcsChange dt=54 procs_value=48 stack=26 -STWEnd dt=296 -GoUnblock dt=6174 g=130 g_seq=8 stack=27 -GoBlock dt=10 reason_string=15 stack=7 -GoStart dt=11 g=130 g_seq=9 -EventBatch gen=6 m=298949 time=22352100056289 size=215 -ProcStatus dt=1 p=37 pstatus=2 -ProcStart dt=2 p=37 p_seq=1 -GoStart dt=1522 g=110 g_seq=2 -GoStatus dt=38 g=92 m=18446744073709551615 gstatus=4 -GoUnblock dt=13 g=92 g_seq=1 stack=5 -GCMarkAssistBegin dt=22 stack=2 -GCMarkAssistEnd dt=2834 -HeapAlloc dt=53 heapalloc_value=195227992 -HeapAlloc dt=132 heapalloc_value=195318104 -GCMarkAssistBegin dt=16 stack=2 -GCMarkAssistEnd dt=1308 -HeapAlloc dt=37 heapalloc_value=196710744 -HeapAlloc dt=215 heapalloc_value=196972888 -HeapAlloc dt=14118 heapalloc_value=200905048 -GoStop dt=7236 reason_string=16 stack=6 -GoUnblock dt=26 g=44 g_seq=1 stack=0 -GoStart dt=7 g=44 g_seq=2 -GoLabel dt=1 label_string=2 -GoBlock dt=3277 reason_string=15 stack=7 -GoStart dt=30 g=89 g_seq=1 -HeapAlloc dt=70 heapalloc_value=201781592 -GoStop dt=49808 reason_string=16 stack=3 -GoStart dt=87 g=99 g_seq=4 -HeapAlloc dt=75 heapalloc_value=204754264 -GoStop dt=62615 reason_string=16 stack=3 -GoStart dt=12 g=64 g_seq=5 -HeapAlloc dt=42368 heapalloc_value=212417048 -GoStop dt=16 reason_string=16 stack=3 -GoStart dt=49 g=64 g_seq=6 -GCMarkAssistBegin dt=11 stack=2 -GoBlock dt=37 reason_string=10 stack=19 -ProcStop dt=75 -ProcStart dt=59 p=17 p_seq=3 -GoStart dt=49 g=99 g_seq=6 -HeapAlloc dt=64 heapalloc_value=212908568 -GCMarkAssistBegin dt=31 stack=2 -GoBlock dt=62 reason_string=10 stack=19 -ProcStop dt=65 -ProcStart dt=274 p=17 p_seq=4 -ProcStop dt=83 -ProcStart dt=463 p=17 p_seq=5 -GoStart dt=349 g=82 g_seq=5 -HeapAlloc dt=3568 heapalloc_value=213211672 -GoStop dt=1964 reason_string=16 stack=3 -ProcStop dt=3243 -EventBatch gen=6 m=298948 time=22352100060734 size=207 -ProcStatus dt=1 p=39 pstatus=2 -ProcStart dt=2 p=39 p_seq=1 -GoStart dt=1518 g=83 g_seq=2 -GoStatus dt=57 g=97 m=18446744073709551615 gstatus=4 -GoUnblock dt=19 g=97 g_seq=1 stack=5 -HeapAlloc dt=92 heapalloc_value=196907352 -HeapAlloc dt=21356 heapalloc_value=201306456 -GoStop dt=130 reason_string=16 stack=3 -GoUnblock dt=20 g=48 g_seq=3 stack=0 -GoStart dt=5 g=48 g_seq=4 -GoLabel dt=3 label_string=2 -GoBlock dt=5026 reason_string=15 stack=7 -GoStart dt=11 g=93 g_seq=1 -HeapAlloc dt=107 heapalloc_value=202272344 -GoStop dt=47997 reason_string=16 stack=3 -GoStart dt=39 g=55 g_seq=3 -HeapAlloc dt=49 heapalloc_value=204623192 -GoStop dt=4878 reason_string=16 stack=3 -GoStart dt=13 g=55 g_seq=4 -HeapAlloc dt=26 heapalloc_value=205012056 -HeapAlloc dt=60 heapalloc_value=205069400 -GoStop dt=4849 reason_string=16 stack=3 -GoStart dt=7 g=55 g_seq=5 -HeapAlloc dt=18 heapalloc_value=205216856 -GoStop dt=4785 reason_string=16 stack=3 -GoStart dt=7 g=55 g_seq=6 -HeapAlloc dt=24 heapalloc_value=205331544 -HeapAlloc dt=73 heapalloc_value=205438040 -GoStop dt=58361 reason_string=16 stack=3 -GoStart dt=11 g=82 g_seq=4 -HeapAlloc dt=50 heapalloc_value=209566808 -GoStop dt=33213 reason_string=16 stack=3 -ProcStop dt=141 -ProcStart dt=1686 p=39 p_seq=2 -ProcStop dt=82 -ProcStart dt=288 p=39 p_seq=3 -GoStart dt=197 g=96 g_seq=6 -HeapAlloc dt=8148 heapalloc_value=214104600 -GoStop dt=3433 reason_string=16 stack=3 -ProcStop dt=10 -EventBatch gen=6 m=298947 time=22352100053318 size=276 -ProcStatus dt=1 p=4 pstatus=1 -GoStatus dt=2 g=64 m=298947 gstatus=2 -GCMarkAssistActive dt=1 g=64 -GCMarkAssistEnd dt=1 -HeapAlloc dt=760 heapalloc_value=189939544 -GoStop dt=27 reason_string=16 stack=6 -GoStart dt=15 g=101 g_seq=1 -GCMarkAssistBegin dt=22 stack=2 -GCMarkAssistEnd dt=3644 -HeapAlloc dt=64 heapalloc_value=192174168 -HeapAlloc dt=169 heapalloc_value=192297048 -HeapAlloc dt=123 heapalloc_value=192460888 -HeapAlloc dt=65 heapalloc_value=192583768 -HeapAlloc dt=42 heapalloc_value=192657496 -HeapAlloc dt=41 heapalloc_value=192706648 -HeapAlloc dt=114 heapalloc_value=192780376 -GCMarkAssistBegin dt=24 stack=2 -GCMarkAssistEnd dt=1806 -HeapAlloc dt=99 heapalloc_value=194730072 -HeapAlloc dt=86 heapalloc_value=194877528 -HeapAlloc dt=99 heapalloc_value=194974040 -GCMarkAssistBegin dt=32 stack=2 -GCMarkAssistEnd dt=2927 -HeapAlloc dt=29 heapalloc_value=197554520 -HeapAlloc dt=11123 heapalloc_value=200003928 -GoStop dt=9182 reason_string=16 stack=3 -GoUnblock dt=25 g=41 g_seq=1 stack=0 -GoStart dt=6 g=41 g_seq=2 -GoLabel dt=1 label_string=2 -GoBlock dt=4592 reason_string=15 stack=7 -GoStart dt=1288 g=105 g_seq=2 -GoStatus dt=32 g=100 m=18446744073709551615 gstatus=4 -GoUnblock dt=71 g=100 g_seq=1 stack=5 -HeapAlloc dt=63 heapalloc_value=202436184 -GoStop dt=12498 reason_string=16 stack=3 -GoUnblock dt=16 g=44 g_seq=3 stack=0 -GoStart dt=7 g=44 g_seq=4 -GoLabel dt=1 label_string=2 -GoBlock dt=458 reason_string=15 stack=7 -GoUnblock dt=17 g=44 g_seq=5 stack=0 -GoStart dt=1 g=44 g_seq=6 +GoBlock dt=4213 reason_string=15 stack=5 +GoUnblock dt=1324 g=57 g_seq=25 stack=0 +GoStart dt=11 g=57 g_seq=26 +GoLabel dt=1 label_string=4 +GoBlock dt=256 reason_string=15 stack=5 +GoUnblock dt=8 g=57 g_seq=27 stack=0 +GoStart dt=5 g=57 g_seq=28 +GoLabel dt=1 label_string=2 +GoBlock dt=485 reason_string=15 stack=5 +GoUnblock dt=8 g=57 g_seq=29 stack=0 +GoStart dt=6 g=57 g_seq=30 GoLabel dt=3 label_string=2 -GoStop dt=7641 reason_string=16 stack=10 -GoStart dt=9 g=44 g_seq=7 -GoBlock dt=18 reason_string=10 stack=13 -GoStart dt=1380 g=57 g_seq=2 -HeapAlloc dt=59534 heapalloc_value=206494808 -GoStop dt=55054 reason_string=16 stack=3 -GoStart dt=193 g=57 g_seq=3 -HeapAlloc dt=51 heapalloc_value=211082136 -GoStop dt=18763 reason_string=16 stack=3 -GoStart dt=78 g=57 g_seq=4 -HeapAlloc dt=2983 heapalloc_value=213539352 -GoStop dt=5422 reason_string=16 stack=6 -ProcStop dt=11 -EventBatch gen=6 m=298946 time=22352100052360 size=246 -ProcStatus dt=2 p=27 pstatus=1 -GoStatus dt=2 g=104 m=298946 gstatus=2 -HeapAlloc dt=2 heapalloc_value=188686552 -HeapAlloc dt=78 heapalloc_value=188801240 -GCMarkAssistBegin dt=103 stack=2 -GCMarkAssistEnd dt=5192 -HeapAlloc dt=288 heapalloc_value=192329816 -HeapAlloc dt=175 heapalloc_value=192575576 -GCMarkAssistBegin dt=137 stack=2 -GCMarkAssistEnd dt=6429 -HeapAlloc dt=229 heapalloc_value=199323992 -HeapAlloc dt=106 heapalloc_value=199463256 -HeapAlloc dt=93 heapalloc_value=199577944 -HeapAlloc dt=11111 heapalloc_value=200675672 -GoStop dt=13375 reason_string=16 stack=6 -GoUnblock dt=105 g=13 g_seq=9 stack=0 -GoStart dt=6 g=13 g_seq=10 -GoLabel dt=1 label_string=2 -GoBlock dt=1498 reason_string=15 stack=7 -GoStart dt=15 g=113 g_seq=2 -HeapAlloc dt=57 heapalloc_value=202944088 -HeapAlloc dt=5655 heapalloc_value=203361880 -GoStop dt=54795 reason_string=16 stack=3 -GoStart dt=22 g=113 g_seq=3 -HeapAlloc dt=36 heapalloc_value=205388888 -GoStop dt=4787 reason_string=16 stack=3 -GoStart dt=12 g=53 g_seq=3 -HeapAlloc dt=4732 heapalloc_value=205765720 -GoStop dt=8 reason_string=16 stack=3 -GoStart dt=11 g=106 g_seq=3 -HeapAlloc dt=41 heapalloc_value=205855832 -HeapAlloc dt=56 heapalloc_value=205986904 -GoStop dt=4700 reason_string=16 stack=3 -GoStart dt=11 g=60 g_seq=2 -GoStop dt=2703 reason_string=16 stack=3 -GoStart dt=5 g=106 g_seq=4 -HeapAlloc dt=47 heapalloc_value=206134360 -HeapAlloc dt=27 heapalloc_value=206150744 -HeapAlloc dt=42 heapalloc_value=206167128 -HeapAlloc dt=17 heapalloc_value=206232664 -GoStop dt=56497 reason_string=16 stack=3 -GoStart dt=34 g=98 g_seq=5 -HeapAlloc dt=59 heapalloc_value=210304088 -HeapAlloc dt=20 heapalloc_value=210369624 -HeapAlloc dt=39 heapalloc_value=210402200 -GCMarkAssistBegin dt=17 stack=2 -GoBlock dt=75 reason_string=10 stack=19 +GoBlock dt=504 reason_string=15 stack=5 +ProcStop dt=3771 +ProcStart dt=29 p=27 p_seq=37 +GoUnblock dt=9 g=22 g_seq=15 stack=0 +GoStart dt=5 g=22 g_seq=16 +GoLabel dt=1 label_string=4 +GoBlock dt=123 reason_string=15 stack=5 +GoUnblock dt=19 g=28 g_seq=7 stack=0 +GoStart dt=2 g=28 g_seq=8 +GoLabel dt=1 label_string=2 +GoBlock dt=67 reason_string=15 stack=5 +GoUnblock dt=73 g=72 g_seq=29 stack=0 +GoStart dt=8 g=72 g_seq=30 +GoLabel dt=1 label_string=4 +GoBlock dt=1357 reason_string=15 stack=5 +GoUnblock dt=71 g=53 g_seq=15 stack=0 +GoStart dt=5 g=53 g_seq=16 +GoLabel dt=2 label_string=4 +GoBlock dt=53 reason_string=15 stack=5 ProcStop dt=61 -EventBatch gen=6 m=298945 time=22352100067410 size=164 -ProcStatus dt=2 p=42 pstatus=2 -ProcStart dt=1 p=42 p_seq=1 -GoStart dt=1294 g=97 g_seq=2 -GoStatus dt=22 g=102 m=18446744073709551615 gstatus=4 -GoUnblock dt=7 g=102 g_seq=1 stack=5 -HeapAlloc dt=11776 heapalloc_value=201249112 -GoStop dt=12 reason_string=16 stack=3 -GoUnblock dt=12808 g=12 g_seq=9 stack=0 -GoStart dt=8 g=12 g_seq=10 -GoLabel dt=1 label_string=2 -GoBlock dt=6859 reason_string=15 stack=7 -GoUnblock dt=11 g=12 g_seq=11 stack=0 -GoStart dt=4 g=12 g_seq=12 -GoLabel dt=1 label_string=2 -GoBlock dt=5880 reason_string=15 stack=7 -GoUnblock dt=11 g=12 g_seq=13 stack=0 -GoStart dt=5 g=12 g_seq=14 -GoLabel dt=1 label_string=2 -GoBlock dt=403 reason_string=15 stack=7 -GoUnblock dt=5 g=12 g_seq=15 stack=0 -GoStart dt=4 g=12 g_seq=16 -GoLabel dt=1 label_string=2 -GoBlock dt=2539 reason_string=15 stack=7 -GoStart dt=10 g=88 g_seq=2 -HeapAlloc dt=47 heapalloc_value=203845208 -HeapAlloc dt=39 heapalloc_value=203910744 -GoStop dt=116409 reason_string=16 stack=3 -GoStart dt=43 g=106 g_seq=5 -GCMarkAssistBegin dt=14 stack=2 -GoBlock dt=41 reason_string=10 stack=19 -GoStart dt=8 g=88 g_seq=3 -GCMarkAssistBegin dt=6 stack=2 -HeapAlloc dt=36 heapalloc_value=210377624 -GoBlock dt=23 reason_string=10 stack=19 -ProcStop dt=53 -EventBatch gen=6 m=298944 time=22352100059296 size=185 -ProcStatus dt=1 p=29 pstatus=1 -GoStatus dt=1 g=93 m=298944 gstatus=2 -GCMarkAssistActive dt=1 g=93 -GCMarkAssistEnd dt=2 -HeapAlloc dt=44 heapalloc_value=193656920 -HeapAlloc dt=122 heapalloc_value=193845336 -HeapAlloc dt=189 heapalloc_value=194033752 -HeapAlloc dt=82 heapalloc_value=194050136 -GCMarkAssistBegin dt=44 stack=2 -GCMarkAssistEnd dt=2530 -HeapAlloc dt=52 heapalloc_value=196759896 -HeapAlloc dt=641 heapalloc_value=197095768 -HeapAlloc dt=147 heapalloc_value=197235032 -HeapAlloc dt=33 heapalloc_value=197349720 -HeapAlloc dt=11079 heapalloc_value=199864664 -GoStop dt=1809 reason_string=16 stack=6 -GoUnblock dt=12877 g=41 g_seq=5 stack=0 -GoStart dt=12 g=41 g_seq=6 -GoLabel dt=2 label_string=2 -GoBlock dt=262 reason_string=15 stack=7 -GoStart dt=9 g=11 g_seq=3 -GoBlock dt=20 reason_string=10 stack=13 -GoStart dt=14195 g=82 g_seq=2 -HeapAlloc dt=91 heapalloc_value=203419224 -GoStop dt=48301 reason_string=16 stack=3 -GoStart dt=39 g=82 g_seq=3 -HeapAlloc dt=26 heapalloc_value=205446232 -HeapAlloc dt=35 heapalloc_value=205487192 -GoStop dt=58315 reason_string=16 stack=3 -GoStart dt=22 g=108 g_seq=6 -HeapAlloc dt=83 heapalloc_value=209624152 -GoStop dt=33380 reason_string=16 stack=3 -GoStart dt=44 g=108 g_seq=7 -HeapAlloc dt=4101 heapalloc_value=213277208 -GoStop dt=1593 reason_string=16 stack=3 -ProcStop dt=3483 -EventBatch gen=6 m=298943 time=22352100071944 size=232 -ProcStatus dt=1 p=16 pstatus=1 -GoStatus dt=4 g=47 m=298943 gstatus=2 -GoBlock dt=9 reason_string=15 stack=7 -GoUnblock dt=13 g=47 g_seq=1 stack=0 -GoStart dt=6 g=47 g_seq=2 -GoLabel dt=1 label_string=2 -GoBlock dt=2713 reason_string=15 stack=7 -GoUnblock dt=7579 g=13 g_seq=3 stack=0 -GoStart dt=6 g=13 g_seq=4 -GoLabel dt=1 label_string=2 -GoBlock dt=644 reason_string=15 stack=7 -GoStart dt=1315 g=63 g_seq=2 -GoStop dt=50 reason_string=16 stack=12 -GoUnblock dt=18 g=47 g_seq=3 stack=0 -GoStart dt=6 g=47 g_seq=4 -GoLabel dt=1 label_string=2 -GoBlock dt=2816 reason_string=15 stack=7 -GoStatus dt=19 g=15 m=18446744073709551615 gstatus=4 -GoUnblock dt=2 g=15 g_seq=1 stack=0 -GoStart dt=22 g=15 g_seq=2 -GoLabel dt=1 label_string=2 -GoBlock dt=2881 reason_string=15 stack=7 -GoStart dt=13 g=109 g_seq=3 -HeapAlloc dt=70 heapalloc_value=202452568 -HeapAlloc dt=40260 heapalloc_value=204148312 -GoStop dt=23 reason_string=16 stack=3 -GoUnblock dt=14 g=40 g_seq=23 stack=0 -GoStart dt=8 g=40 g_seq=24 -GoLabel dt=1 label_string=2 -GoBlock dt=2697 reason_string=15 stack=7 -GoStart dt=12 g=54 g_seq=2 -HeapAlloc dt=55473 heapalloc_value=207690840 -GoStop dt=20 reason_string=16 stack=3 -GoStart dt=43 g=110 g_seq=5 -HeapAlloc dt=608 heapalloc_value=207846488 -GoStop dt=45542 reason_string=16 stack=6 -GoStart dt=19 g=116 g_seq=6 -GCMarkAssistBegin dt=16 stack=2 -GoBlock dt=30 reason_string=10 stack=19 -GoStart dt=5 g=110 g_seq=6 -GoStop dt=2708 reason_string=16 stack=3 -GoStart dt=9 g=110 g_seq=7 -HeapAlloc dt=27 heapalloc_value=211737304 -GoStop dt=8503 reason_string=16 stack=3 -GoStart dt=24 g=110 g_seq=8 -HeapAlloc dt=3299 heapalloc_value=213817880 -GoStop dt=7494 reason_string=16 stack=3 -ProcStop dt=10 -EventBatch gen=6 m=298941 time=22352100063047 size=263 -ProcStatus dt=2 p=40 pstatus=2 -ProcStart dt=2 p=40 p_seq=1 -GoStart dt=1596 g=92 g_seq=2 -GoStatus dt=38 g=58 m=18446744073709551615 gstatus=4 -GoUnblock dt=9 g=58 g_seq=1 stack=5 -HeapAlloc dt=55 heapalloc_value=199127384 -HeapAlloc dt=73 heapalloc_value=199184728 -HeapAlloc dt=97 heapalloc_value=199266648 -HeapAlloc dt=149 heapalloc_value=199430488 -GoStop dt=8973 reason_string=16 stack=3 -GoStart dt=15 g=92 g_seq=3 -HeapAlloc dt=3312 heapalloc_value=201109848 -GoStop dt=16150 reason_string=16 stack=3 -GoUnblock dt=120 g=47 g_seq=9 stack=0 -GoStart dt=6 g=47 g_seq=10 -GoLabel dt=1 label_string=2 -GoBlock dt=8966 reason_string=15 stack=7 -GoUnblock dt=15 g=47 g_seq=11 stack=0 -GoStart dt=6 g=47 g_seq=12 -GoLabel dt=1 label_string=2 -GoBlock dt=18 reason_string=15 stack=7 -GoUnblock dt=3 g=47 g_seq=13 stack=0 -GoStart dt=2 g=47 g_seq=14 -GoLabel dt=1 label_string=2 -GoBlock dt=142 reason_string=15 stack=7 -GoUnblock dt=8 g=47 g_seq=15 stack=0 -GoStart dt=3 g=47 g_seq=16 -GoLabel dt=1 label_string=2 -GoBlock dt=284 reason_string=15 stack=7 -GoUnblock dt=10 g=65 g_seq=19 stack=0 -GoStart dt=2 g=65 g_seq=20 -GoLabel dt=1 label_string=2 -GoBlock dt=40 reason_string=15 stack=7 -GoUnblock dt=9 g=65 g_seq=21 stack=0 -GoStart dt=1 g=65 g_seq=22 -GoLabel dt=1 label_string=2 -GoBlock dt=3003 reason_string=15 stack=7 -GoUnblock dt=9 g=65 g_seq=23 stack=0 -GoStart dt=10 g=65 g_seq=24 -GoLabel dt=1 label_string=2 -GoBlock dt=1552 reason_string=15 stack=7 -GoStart dt=9 g=98 g_seq=2 -HeapAlloc dt=33 heapalloc_value=203722328 -GoStop dt=53654 reason_string=16 stack=3 -GoStart dt=24 g=53 g_seq=4 -HeapAlloc dt=40 heapalloc_value=205904984 -GoStop dt=58773 reason_string=16 stack=3 -GoStart dt=15 g=53 g_seq=5 -HeapAlloc dt=55 heapalloc_value=209951832 -HeapAlloc dt=73 heapalloc_value=210189400 -GCMarkAssistBegin dt=36 stack=2 -GoBlock dt=62 reason_string=10 stack=19 -GoStart dt=107 g=105 g_seq=4 -GCMarkAssistBegin dt=11 stack=2 -GoBlock dt=30 reason_string=10 stack=19 -ProcStop dt=42 -EventBatch gen=6 m=298940 time=22352100055781 size=192 -ProcStatus dt=1 p=36 pstatus=2 -ProcStart dt=2 p=36 p_seq=1 -GoStart dt=208 g=64 g_seq=1 -HeapAlloc dt=158 heapalloc_value=191151192 -HeapAlloc dt=54 heapalloc_value=191257688 -HeapAlloc dt=87 heapalloc_value=191331032 -HeapAlloc dt=125 heapalloc_value=191363800 -HeapAlloc dt=44 heapalloc_value=191380184 -HeapAlloc dt=64 heapalloc_value=191428696 -GCMarkAssistBegin dt=47 stack=2 -GCMarkAssistEnd dt=3374 -HeapAlloc dt=145 heapalloc_value=194312280 -HeapAlloc dt=175 heapalloc_value=194599000 -HeapAlloc dt=112 heapalloc_value=194844760 -GCMarkAssistBegin dt=153 stack=2 -GCMarkAssistEnd dt=8435 -HeapAlloc dt=6737 heapalloc_value=200225112 -GoStop dt=11419 reason_string=16 stack=3 -GoUnblock dt=20 g=47 g_seq=5 stack=0 -GoStart dt=9 g=47 g_seq=6 -GoLabel dt=1 label_string=2 -GoBlock dt=304 reason_string=15 stack=7 -GoStart dt=24 g=108 g_seq=2 -HeapAlloc dt=78 heapalloc_value=202116696 -GoStop dt=49507 reason_string=16 stack=3 -GoStart dt=120 g=93 g_seq=2 -HeapAlloc dt=57752 heapalloc_value=208215128 -GoStop dt=10 reason_string=16 stack=3 -GoStart dt=12 g=109 g_seq=7 -HeapAlloc dt=47161 heapalloc_value=212384280 -GoStop dt=14 reason_string=16 stack=3 -GoStart dt=63 g=104 g_seq=4 -HeapAlloc dt=146 heapalloc_value=212564504 -HeapAlloc dt=182 heapalloc_value=212720152 -HeapAlloc dt=5919 heapalloc_value=213441048 -GoStop dt=5645 reason_string=16 stack=3 -ProcStop dt=13 -EventBatch gen=6 m=298939 time=22352100070982 size=194 -ProcStatus dt=1 p=0 pstatus=1 -GoStatus dt=1 g=48 m=298939 gstatus=2 -GoBlock dt=8 reason_string=15 stack=7 -GoUnblock dt=17 g=48 g_seq=1 stack=0 -GoStart dt=7 g=48 g_seq=2 -GoLabel dt=1 label_string=2 -GoBlock dt=3708 reason_string=15 stack=7 -GoStart dt=11051 g=55 g_seq=1 -HeapAlloc dt=79 heapalloc_value=201535832 -GoStop dt=39046 reason_string=16 stack=3 -GoUnblock dt=13 g=15 g_seq=19 stack=0 -GoStart dt=6 g=15 g_seq=20 -GoLabel dt=1 label_string=2 -GoBlock dt=812 reason_string=15 stack=7 -GoUnblock dt=10 g=15 g_seq=21 stack=0 -GoStart dt=2 g=15 g_seq=22 -GoLabel dt=1 label_string=2 -GoBlock dt=3928 reason_string=15 stack=7 -GoUnblock dt=8 g=15 g_seq=23 stack=0 -GoStart dt=4 g=15 g_seq=24 -GoLabel dt=1 label_string=2 -GoBlock dt=211 reason_string=15 stack=7 -GoStart dt=5 g=62 g_seq=2 -HeapAlloc dt=58114 heapalloc_value=207207512 -GoStop dt=40 reason_string=16 stack=3 -GoStart dt=28 g=58 g_seq=5 -HeapAlloc dt=32 heapalloc_value=207436888 -HeapAlloc dt=1332 heapalloc_value=207961176 -GoStop dt=45629 reason_string=16 stack=3 -GoStart dt=26 g=58 g_seq=6 -HeapAlloc dt=32 heapalloc_value=211630808 -HeapAlloc dt=28 heapalloc_value=211671768 -GoStop dt=3420 reason_string=16 stack=3 -GoStart dt=146 g=94 g_seq=6 -HeapAlloc dt=7711 heapalloc_value=213170712 -GoStop dt=9 reason_string=16 stack=3 -GoStart dt=9 g=94 g_seq=7 -HeapAlloc dt=7566 heapalloc_value=214022680 -GoStop dt=3662 reason_string=16 stack=3 -ProcStop dt=10 -EventBatch gen=6 m=298938 time=22352100069981 size=136 -ProcStatus dt=1 p=7 pstatus=1 -GoStatus dt=2 g=13 m=298938 gstatus=2 -GoBlock dt=12 reason_string=15 stack=7 -GoStart dt=1329 g=91 g_seq=2 -GoStatus dt=21 g=81 m=18446744073709551615 gstatus=4 -GoUnblock dt=5 g=81 g_seq=1 stack=5 -HeapAlloc dt=9016 heapalloc_value=201167192 -GoStop dt=12 reason_string=16 stack=3 -GoStart dt=14556 g=86 g_seq=2 -GoStatus dt=28 g=82 m=18446744073709551615 gstatus=4 -GoUnblock dt=11 g=82 g_seq=1 stack=5 -HeapAlloc dt=88 heapalloc_value=203255384 -GoStop dt=51998 reason_string=16 stack=3 -GoStart dt=53 g=86 g_seq=3 -HeapAlloc dt=57 heapalloc_value=205323352 -GoStop dt=58203 reason_string=16 stack=3 -GoStart dt=19 g=89 g_seq=4 -HeapAlloc dt=37936 heapalloc_value=212933144 -GoStop dt=17 reason_string=16 stack=3 -GoStart dt=25 g=89 g_seq=5 -HeapAlloc dt=5828 heapalloc_value=213670424 -GoStop dt=7076 reason_string=16 stack=3 -ProcStop dt=15 -EventBatch gen=6 m=298937 time=22352100085521 size=142 -ProcStart dt=2 p=47 p_seq=1 -GoStart dt=22 g=54 g_seq=1 -HeapAlloc dt=68 heapalloc_value=201494872 -GoStop dt=44827 reason_string=16 stack=3 -GoStart dt=45 g=96 g_seq=3 -HeapAlloc dt=169 heapalloc_value=204254808 -GoStop dt=57598 reason_string=16 stack=3 -GoStart dt=27 g=84 g_seq=3 -HeapAlloc dt=50340 heapalloc_value=211819224 -GoStop dt=12 reason_string=16 stack=3 -GoStart dt=18 g=58 g_seq=7 -HeapAlloc dt=34 heapalloc_value=211892952 -HeapAlloc dt=42 heapalloc_value=211966680 -HeapAlloc dt=3017 heapalloc_value=212130328 -HeapAlloc dt=58 heapalloc_value=212187672 -HeapAlloc dt=20 heapalloc_value=212245016 -HeapAlloc dt=76 heapalloc_value=212302360 -GoStop dt=7 reason_string=16 stack=3 -GoStart dt=310 g=83 g_seq=6 -HeapAlloc dt=220 heapalloc_value=212589080 -HeapAlloc dt=37 heapalloc_value=212605464 -HeapAlloc dt=36 heapalloc_value=212662808 -HeapAlloc dt=52 heapalloc_value=212810264 -HeapAlloc dt=7271 heapalloc_value=213924376 -GoStop dt=14 reason_string=16 stack=3 -ProcStop dt=4501 -EventBatch gen=6 m=298936 time=22352100074733 size=130 -ProcStatus dt=1 p=9 pstatus=1 -GoStatus dt=1 g=25 m=298936 gstatus=2 -GoBlock dt=5 reason_string=15 stack=7 -GoUnblock dt=8533 g=13 g_seq=5 stack=0 -GoStart dt=8 g=13 g_seq=6 -GoLabel dt=1 label_string=2 -GoBlock dt=3821 reason_string=15 stack=7 -GoStart dt=18 g=83 g_seq=3 -HeapAlloc dt=80 heapalloc_value=201724248 -GoStop dt=43910 reason_string=16 stack=3 -GoUnblock dt=17 g=12 g_seq=17 stack=0 -GoStart dt=9 g=12 g_seq=18 -GoLabel dt=1 label_string=2 -GoBlock dt=2743 reason_string=15 stack=7 -GoStart dt=13 g=110 g_seq=4 -HeapAlloc dt=47 heapalloc_value=204394072 -GoStop dt=54670 reason_string=16 stack=3 -GoStart dt=18 g=59 g_seq=4 -HeapAlloc dt=739 heapalloc_value=207895640 -GoStop dt=45539 reason_string=16 stack=3 -GoStart dt=22 g=59 g_seq=5 -HeapAlloc dt=56 heapalloc_value=211499928 -HeapAlloc dt=46 heapalloc_value=211565464 -GCMarkAssistBegin dt=20 stack=2 -HeapAlloc dt=45 heapalloc_value=211573464 -GoBlock dt=23 reason_string=10 stack=19 -ProcStop dt=76 -EventBatch gen=6 m=298935 time=22352100072681 size=123 -ProcStatus dt=1 p=20 pstatus=1 -GoStatus dt=1 g=11 m=298935 gstatus=2 -GoBlock dt=9 reason_string=15 stack=7 -GoUnblock dt=13 g=11 g_seq=1 stack=0 -GoStart dt=5 g=11 g_seq=2 -GoLabel dt=1 label_string=2 -GoStop dt=5841 reason_string=16 stack=10 -GoUnblock dt=10852 g=41 g_seq=7 stack=0 -GoStart dt=5 g=41 g_seq=8 -GoLabel dt=1 label_string=2 -GoBlock dt=1138 reason_string=15 stack=7 -GoStart dt=16 g=104 g_seq=1 -HeapAlloc dt=141 heapalloc_value=202714712 -GoStop dt=46559 reason_string=16 stack=3 -GoUnblock dt=34 g=131 g_seq=7 stack=0 -GoStart dt=7 g=131 g_seq=8 -GoSyscallBegin dt=28 stack=4 -GoSyscallEnd dt=196 -GoBlock dt=15 reason_string=15 stack=8 -GoStart dt=15 g=108 g_seq=3 -HeapAlloc dt=30 heapalloc_value=204872792 -GoStop dt=62326 reason_string=16 stack=3 -GoStart dt=21 g=99 g_seq=5 -HeapAlloc dt=2336 heapalloc_value=209214552 -GoStop dt=40137 reason_string=16 stack=3 -ProcStop dt=113 -EventBatch gen=6 m=298934 time=22352100061326 size=259 -ProcStatus dt=1 p=28 pstatus=1 -GoStatus dt=6 g=103 m=298934 gstatus=2 -GCMarkAssistActive dt=1 g=103 -GCMarkAssistEnd dt=3 -HeapAlloc dt=134 heapalloc_value=195907928 -HeapAlloc dt=105 heapalloc_value=195965272 -HeapAlloc dt=77 heapalloc_value=196006232 -HeapAlloc dt=77 heapalloc_value=196079960 -HeapAlloc dt=97 heapalloc_value=196178264 -HeapAlloc dt=70 heapalloc_value=196260184 -HeapAlloc dt=122 heapalloc_value=196350296 -HeapAlloc dt=197 heapalloc_value=196596056 -HeapAlloc dt=879 heapalloc_value=197161304 -HeapAlloc dt=193 heapalloc_value=197407064 -HeapAlloc dt=13277 heapalloc_value=200847704 -GoStop dt=17620 reason_string=16 stack=3 -GoUnblock dt=13 g=40 g_seq=7 stack=0 -GoStart dt=6 g=40 g_seq=8 -GoLabel dt=1 label_string=2 -GoBlock dt=8277 reason_string=15 stack=7 -GoUnblock dt=12 g=40 g_seq=9 stack=0 -GoStart dt=5 g=40 g_seq=10 -GoLabel dt=1 label_string=2 -GoBlock dt=23 reason_string=15 stack=7 -GoUnblock dt=13 g=40 g_seq=11 stack=0 -GoStart dt=3 g=40 g_seq=12 -GoLabel dt=1 label_string=2 -GoBlock dt=19 reason_string=15 stack=7 -GoUnblock dt=9 g=40 g_seq=13 stack=0 -GoStart dt=1 g=40 g_seq=14 -GoLabel dt=1 label_string=2 -GoBlock dt=223 reason_string=15 stack=7 -GoUnblock dt=6 g=40 g_seq=15 stack=0 -GoStart dt=1 g=40 g_seq=16 -GoLabel dt=1 label_string=2 -GoBlock dt=153 reason_string=15 stack=7 -GoUnblock dt=9 g=40 g_seq=17 stack=0 -GoStart dt=2 g=40 g_seq=18 -GoLabel dt=1 label_string=2 -GoBlock dt=3978 reason_string=15 stack=7 -GoUnblock dt=8 g=40 g_seq=19 stack=0 -GoStart dt=10 g=40 g_seq=20 -GoLabel dt=1 label_string=2 -GoBlock dt=1477 reason_string=15 stack=7 -GoUnblock dt=7 g=40 g_seq=21 stack=0 -GoStart dt=6 g=40 g_seq=22 -GoLabel dt=1 label_string=2 -GoBlock dt=682 reason_string=15 stack=7 -GoStart dt=8 g=105 g_seq=3 -HeapAlloc dt=30 heapalloc_value=203918936 -HeapAlloc dt=86 heapalloc_value=203976280 -GoStop dt=111329 reason_string=16 stack=3 -ProcStop dt=144 -ProcStart dt=5242 p=28 p_seq=1 -ProcStop dt=58 -EventBatch gen=6 m=298933 time=22352100053200 size=226 -ProcStatus dt=1 p=17 pstatus=1 -GoStatus dt=1 g=107 m=298933 gstatus=2 -GCMarkAssistActive dt=1 g=107 -GCMarkAssistEnd dt=2 -HeapAlloc dt=42 heapalloc_value=189120728 -HeapAlloc dt=264 heapalloc_value=189227224 -HeapAlloc dt=84 heapalloc_value=189325528 -HeapAlloc dt=94 heapalloc_value=189481176 -HeapAlloc dt=74 heapalloc_value=189628248 -HeapAlloc dt=109 heapalloc_value=189833048 -GCMarkAssistBegin dt=90 stack=2 -GCMarkAssistEnd dt=5207 -HeapAlloc dt=36 heapalloc_value=193501272 -HeapAlloc dt=169 heapalloc_value=193730648 -GCMarkAssistBegin dt=51 stack=2 -GCMarkAssistEnd dt=6796 -HeapAlloc dt=8003 heapalloc_value=199807320 -GoStop dt=5332 reason_string=16 stack=3 -GoUnblock dt=11228 g=12 g_seq=7 stack=0 -GoStart dt=5 g=12 g_seq=8 -GoLabel dt=2 label_string=2 -GoBlock dt=1271 reason_string=15 stack=7 -GoStart dt=17 g=114 g_seq=3 -HeapAlloc dt=43665 heapalloc_value=204459416 -GoStop dt=15 reason_string=16 stack=3 -GoStart dt=15 g=114 g_seq=4 -HeapAlloc dt=54071 heapalloc_value=208165976 -GoStop dt=14 reason_string=16 stack=3 -GoStart dt=30 g=94 g_seq=5 -HeapAlloc dt=48764 heapalloc_value=211851992 -GoStop dt=11 reason_string=16 stack=3 -GoStart dt=22 g=84 g_seq=4 -GCMarkAssistBegin dt=14 stack=2 -HeapAlloc dt=41 heapalloc_value=211974680 -GoBlock dt=18 reason_string=10 stack=19 -ProcStop dt=58 -ProcStart dt=1875 p=17 p_seq=1 -ProcStop dt=52 -ProcStart dt=1583 p=17 p_seq=2 -ProcStop dt=80 -ProcStart dt=136 p=37 p_seq=2 -ProcStop dt=46 -ProcStart dt=1570 p=37 p_seq=3 -ProcStop dt=79 -ProcStart dt=571 p=37 p_seq=4 -GoStart dt=211 g=113 g_seq=6 -HeapAlloc dt=9100 heapalloc_value=214186520 -GoStop dt=24 reason_string=16 stack=3 -ProcStop dt=12 -EventBatch gen=6 m=298932 time=22352100053080 size=255 -ProcStatus dt=2 p=21 pstatus=1 -GoStatus dt=1 g=98 m=298932 gstatus=2 -GCMarkAssistActive dt=1 g=98 -GCMarkAssistEnd dt=2 -HeapAlloc dt=33 heapalloc_value=188973272 -GoStop dt=30 reason_string=16 stack=6 -GoStart dt=20 g=112 g_seq=1 -HeapAlloc dt=64 heapalloc_value=189063384 -HeapAlloc dt=421 heapalloc_value=189382872 -HeapAlloc dt=68 heapalloc_value=189530328 -HeapAlloc dt=114 heapalloc_value=189767512 -GCMarkAssistBegin dt=89 stack=2 -GCMarkAssistEnd dt=4433 -HeapAlloc dt=40 heapalloc_value=192772184 -HeapAlloc dt=119 heapalloc_value=192936024 -GCMarkAssistBegin dt=98 stack=2 -GCMarkAssistEnd dt=2290 -HeapAlloc dt=56 heapalloc_value=195432792 -HeapAlloc dt=167 heapalloc_value=195629400 -GCMarkAssistBegin dt=126 stack=2 -GCMarkAssistEnd dt=3342 -HeapAlloc dt=27 heapalloc_value=199004504 -HeapAlloc dt=25041 heapalloc_value=202370648 -GoStop dt=23 reason_string=16 stack=3 -GoUnblock dt=121 g=47 g_seq=7 stack=0 -GoStart dt=7 g=47 g_seq=8 -GoLabel dt=1 label_string=2 -GoBlock dt=1306 reason_string=15 stack=7 -GoStart dt=14 g=88 g_seq=1 -HeapAlloc dt=60 heapalloc_value=202763864 -HeapAlloc dt=988 heapalloc_value=202993240 -GoStop dt=10203 reason_string=16 stack=3 -GoUnblock dt=12 g=25 g_seq=3 stack=0 -GoStart dt=6 g=25 g_seq=4 +ProcStart dt=29 p=27 p_seq=38 +GoUnblock dt=4 g=72 g_seq=35 stack=0 +GoStart dt=4 g=72 g_seq=36 +GoLabel dt=1 label_string=4 +GoBlock dt=775 reason_string=15 stack=5 +GoUnblock dt=11 g=72 g_seq=37 stack=0 +GoStart dt=5 g=72 g_seq=38 GoLabel dt=3 label_string=2 -GoBlock dt=545 reason_string=15 stack=7 -GoUnblock dt=14 g=25 g_seq=5 stack=0 -GoStart dt=2 g=25 g_seq=6 -GoLabel dt=1 label_string=2 -GoBlock dt=2034 reason_string=15 stack=7 -GoStart dt=17 g=53 g_seq=2 -HeapAlloc dt=31 heapalloc_value=203476568 -GoStop dt=46975 reason_string=16 stack=3 -GoStart dt=25 g=87 g_seq=3 -HeapAlloc dt=127 heapalloc_value=205593688 -GoStop dt=62846 reason_string=16 stack=3 -GoStart dt=15 g=91 g_seq=5 -HeapAlloc dt=51 heapalloc_value=209755224 -GoStop dt=28867 reason_string=16 stack=3 -GoStart dt=36 g=91 g_seq=6 -HeapAlloc dt=5493 heapalloc_value=213899800 -GoStop dt=15 reason_string=16 stack=3 -ProcStop dt=4058 -EventBatch gen=6 m=298931 time=22352100053599 size=231 -ProcStatus dt=1 p=32 pstatus=1 -GoStatus dt=2 g=53 m=298931 gstatus=1 -GoStart dt=3 g=53 g_seq=1 -GoStatus dt=35 g=90 m=18446744073709551615 gstatus=4 -GoUnblock dt=10 g=90 g_seq=1 stack=5 -GCMarkAssistBegin dt=17 stack=2 -GCMarkAssistEnd dt=1232 -HeapAlloc dt=83 heapalloc_value=190422104 -HeapAlloc dt=73 heapalloc_value=190495832 -HeapAlloc dt=128 heapalloc_value=190626904 -HeapAlloc dt=72 heapalloc_value=190741592 -GCMarkAssistBegin dt=110 stack=2 -GCMarkAssistEnd dt=3949 -HeapAlloc dt=91 heapalloc_value=193796184 -HeapAlloc dt=75 heapalloc_value=193894488 -HeapAlloc dt=112 heapalloc_value=193943640 -GCMarkAssistBegin dt=51 stack=2 -GCMarkAssistEnd dt=3467 -HeapAlloc dt=48 heapalloc_value=197300568 -HeapAlloc dt=13944 heapalloc_value=201068888 -GoStop dt=16005 reason_string=16 stack=3 -GoUnblock dt=17 g=48 g_seq=7 stack=0 -GoStart dt=4 g=48 g_seq=8 -GoLabel dt=1 label_string=2 -GoBlock dt=9466 reason_string=15 stack=7 -GoUnblock dt=20 g=48 g_seq=9 stack=0 -GoStart dt=5 g=48 g_seq=10 +GoBlock dt=2553 reason_string=15 stack=5 +GoUnblock dt=23 g=54 g_seq=27 stack=0 +GoStart dt=7 g=54 g_seq=28 +GoLabel dt=1 label_string=2 +GoBlock dt=5185 reason_string=15 stack=5 +ProcStop dt=46 +ProcStart dt=1102 p=27 p_seq=39 +GoUnblock dt=17 g=14 g_seq=31 stack=0 +GoStart dt=191 g=14 g_seq=32 +GoLabel dt=5 label_string=2 +GoBlock dt=26 reason_string=15 stack=5 +GoUnblock dt=7 g=14 g_seq=33 stack=0 +GoStart dt=2 g=14 g_seq=34 +GoLabel dt=1 label_string=2 +GoBlock dt=81 reason_string=15 stack=5 +GoUnblock dt=11 g=14 g_seq=35 stack=0 +GoStart dt=6 g=14 g_seq=36 +GoLabel dt=1 label_string=2 +GoUnblock dt=257 g=97 g_seq=3 stack=12 +GoStop dt=1123 reason_string=16 stack=13 +GoUnblock dt=612 g=131 g_seq=4 stack=0 +GoStart dt=5 g=131 g_seq=5 +GoSyscallBegin dt=23 p_seq=40 stack=7 +GoSyscallEnd dt=200 +GoSyscallBegin dt=13 p_seq=41 stack=7 +GoSyscallEnd dt=179 +GoBlock dt=6 reason_string=15 stack=2 +ProcStop dt=31 +ProcStart dt=1232 p=22 p_seq=3 +GoUnblock dt=16 g=14 g_seq=40 stack=0 +GoStart dt=157 g=14 g_seq=41 GoLabel dt=2 label_string=2 -GoBlock dt=4295 reason_string=15 stack=7 -GoUnblock dt=15 g=48 g_seq=11 stack=0 -GoStart dt=5 g=48 g_seq=12 -GoLabel dt=1 label_string=2 -GoBlock dt=691 reason_string=15 stack=7 -GoStart dt=20 g=60 g_seq=1 -HeapAlloc dt=668 heapalloc_value=203771480 -GoStop dt=53288 reason_string=16 stack=6 -GoStart dt=19 g=103 g_seq=2 -HeapAlloc dt=45 heapalloc_value=206077016 -GoStop dt=58752 reason_string=16 stack=3 -GoStart dt=10 g=103 g_seq=3 -HeapAlloc dt=20 heapalloc_value=210279512 -GoStop dt=24827 reason_string=16 stack=3 -GoStart dt=28 g=103 g_seq=4 -HeapAlloc dt=3043 heapalloc_value=213375512 -GoStop dt=4094 reason_string=16 stack=6 -ProcStop dt=9 -EventBatch gen=6 m=298930 time=22352100070576 size=103 -ProcStatus dt=2 p=44 pstatus=2 -ProcStart dt=2 p=44 p_seq=1 -GoStart dt=1540 g=102 g_seq=2 -GoStatus dt=30 g=116 m=18446744073709551615 gstatus=4 -GoUnblock dt=12 g=116 g_seq=1 stack=5 -HeapAlloc dt=14927 heapalloc_value=201675096 -GoStop dt=57 reason_string=16 stack=3 -GoStart dt=30 g=63 g_seq=3 -GoStatus dt=8 g=59 m=18446744073709551615 gstatus=4 -GoUnblock dt=4 g=59 g_seq=1 stack=5 -HeapAlloc dt=30 heapalloc_value=201732440 -HeapAlloc dt=57 heapalloc_value=201847128 -GoStop dt=89122 reason_string=16 stack=3 -GoStart dt=59 g=85 g_seq=4 -HeapAlloc dt=50174 heapalloc_value=211032984 -GoStop dt=18 reason_string=16 stack=3 -ProcStop dt=157 -EventBatch gen=6 m=298928 time=22352100055167 size=202 -ProcStatus dt=1 p=35 pstatus=2 -ProcStart dt=2 p=35 p_seq=1 -GoStart dt=231 g=108 g_seq=1 -HeapAlloc dt=58 heapalloc_value=190889048 -GCMarkAssistBegin dt=68 stack=2 -GCMarkAssistEnd dt=7788 -HeapAlloc dt=61 heapalloc_value=197464408 -HeapAlloc dt=12050 heapalloc_value=200175960 -GoStop dt=11791 reason_string=16 stack=3 -GoStart dt=19 g=62 g_seq=1 -HeapAlloc dt=32 heapalloc_value=201789784 -HeapAlloc dt=27 heapalloc_value=201863512 -HeapAlloc dt=42 heapalloc_value=201920856 -GoStop dt=37489 reason_string=16 stack=3 -GoUnblock dt=9 g=13 g_seq=15 stack=0 -GoStart dt=5 g=13 g_seq=16 -GoLabel dt=1 label_string=2 -GoBlock dt=6604 reason_string=15 stack=7 -GoUnblock dt=10 g=13 g_seq=17 stack=0 -GoStart dt=5 g=13 g_seq=18 -GoLabel dt=1 label_string=2 -GoBlock dt=1630 reason_string=15 stack=7 -GoUnblock dt=6 g=13 g_seq=19 stack=0 -GoStart dt=6 g=13 g_seq=20 -GoLabel dt=1 label_string=2 -GoBlock dt=56 reason_string=15 stack=7 -GoStart dt=7 g=59 g_seq=3 -HeapAlloc dt=55288 heapalloc_value=207666264 -GoStop dt=16 reason_string=16 stack=3 -GoStart dt=29 g=109 g_seq=5 -HeapAlloc dt=816 heapalloc_value=207854680 -GoStop dt=19 reason_string=16 stack=3 -GoStart dt=7 g=54 g_seq=3 -HeapAlloc dt=66 heapalloc_value=207903832 -HeapAlloc dt=45927 heapalloc_value=211696344 -GoStop dt=14 reason_string=16 stack=3 -GoStart dt=87 g=54 g_seq=4 -HeapAlloc dt=10627 heapalloc_value=213137944 -GoStop dt=10 reason_string=16 stack=3 -GoStart dt=11 g=54 g_seq=5 -GCMarkAssistBegin dt=8 stack=2 -GoBlock dt=32 reason_string=10 stack=19 +GoUnblock dt=343 g=103 g_seq=1 stack=12 +GoBlock dt=2805 reason_string=15 stack=5 +ProcStop dt=68 +ProcStart dt=17 p=22 p_seq=4 +GoUnblock dt=3 g=14 g_seq=42 stack=0 +GoStart dt=4 g=14 g_seq=43 +GoLabel dt=1 label_string=4 +GoUnblock dt=609 g=116 g_seq=7 stack=12 +GoBlock dt=9 reason_string=15 stack=5 +GoStart dt=10 g=116 g_seq=8 +GCMarkAssistEnd dt=7 +HeapAlloc dt=60 heapalloc_value=192527064 +GCMarkAssistBegin dt=41 stack=3 +GoBlock dt=47 reason_string=13 stack=11 +GoUnblock dt=13 g=30 g_seq=35 stack=0 +GoStart dt=4 g=30 g_seq=36 +GoLabel dt=2 label_string=2 +GoBlock dt=266 reason_string=15 stack=5 +GoStart dt=16 g=105 g_seq=8 +GoBlock dt=18 reason_string=13 stack=11 +GoUnblock dt=55 g=54 g_seq=29 stack=0 +GoStart dt=8 g=54 g_seq=30 +GoLabel dt=1 label_string=4 +GoBlock dt=13 reason_string=15 stack=5 +GoUnblock dt=10 g=54 g_seq=31 stack=0 +GoStart dt=1 g=54 g_seq=32 +GoLabel dt=1 label_string=2 +GoBlock dt=46 reason_string=15 stack=5 ProcStop dt=57 -EventBatch gen=6 m=298942 time=22352100052369 size=445 -ProcStatus dt=1 p=11 pstatus=1 -GoStatus dt=2 g=101 m=298942 gstatus=2 -HeapAlloc dt=3 heapalloc_value=188727512 -GCMarkAssistBegin dt=239 stack=2 -GCMarkAssistEnd dt=1085 -HeapAlloc dt=61 heapalloc_value=189595480 -GoStop dt=47 reason_string=16 stack=3 -GoStart dt=18 g=98 g_seq=1 -HeapAlloc dt=1100 heapalloc_value=190348376 -HeapAlloc dt=176 heapalloc_value=190569560 -GCMarkAssistBegin dt=146 stack=2 -GCMarkAssistEnd dt=3384 -HeapAlloc dt=50 heapalloc_value=193058904 -HeapAlloc dt=125 heapalloc_value=193230936 -HeapAlloc dt=117 heapalloc_value=193288280 -GCMarkAssistBegin dt=83 stack=2 -GCMarkAssistEnd dt=2981 -HeapAlloc dt=59 heapalloc_value=196407640 -HeapAlloc dt=329 heapalloc_value=196858200 -GCMarkAssistBegin dt=65 stack=2 -GCMarkAssistEnd dt=2618 -HeapAlloc dt=79 heapalloc_value=199528792 -HeapAlloc dt=11372 heapalloc_value=200798552 -GoStop dt=17631 reason_string=16 stack=3 -GoUnblock dt=19 g=15 g_seq=3 stack=0 -GoStart dt=7 g=15 g_seq=4 -GoLabel dt=1 label_string=2 -GoBlock dt=8503 reason_string=15 stack=7 -GoUnblock dt=14 g=15 g_seq=5 stack=0 -GoStart dt=9 g=15 g_seq=6 -GoLabel dt=1 label_string=2 -GoBlock dt=337 reason_string=15 stack=7 -GoUnblock dt=9 g=15 g_seq=7 stack=0 -GoStart dt=2 g=15 g_seq=8 -GoLabel dt=1 label_string=2 -GoBlock dt=2961 reason_string=15 stack=7 -GoUnblock dt=10 g=15 g_seq=9 stack=0 -GoStart dt=5 g=15 g_seq=10 -GoLabel dt=1 label_string=2 -GoBlock dt=36 reason_string=15 stack=7 -GoUnblock dt=9 g=15 g_seq=11 stack=0 -GoStart dt=6 g=15 g_seq=12 -GoLabel dt=1 label_string=2 -GoBlock dt=2736 reason_string=15 stack=7 -GoUnblock dt=6 g=15 g_seq=13 stack=0 -GoStart dt=5 g=15 g_seq=14 -GoLabel dt=1 label_string=2 -GoBlock dt=674 reason_string=15 stack=7 -GoUnblock dt=3 g=15 g_seq=15 stack=0 -GoStart dt=2 g=15 g_seq=16 -GoLabel dt=1 label_string=2 -GoBlock dt=72 reason_string=15 stack=7 -GoUnblock dt=5 g=15 g_seq=17 stack=0 -GoStart dt=1 g=15 g_seq=18 -GoLabel dt=1 label_string=2 -GoBlock dt=125 reason_string=15 stack=7 -GoStart dt=8 g=111 g_seq=3 -HeapAlloc dt=61520 heapalloc_value=206273624 -GoStop dt=5050 reason_string=16 stack=3 -GoStart dt=32 g=107 g_seq=3 -HeapAlloc dt=38 heapalloc_value=206543960 -GoStop dt=1497 reason_string=16 stack=3 -GoStart dt=13 g=63 g_seq=4 -HeapAlloc dt=28 heapalloc_value=206748760 -GoStop dt=4984 reason_string=16 stack=3 -GoStart dt=12 g=58 g_seq=4 -HeapAlloc dt=35 heapalloc_value=206912600 -HeapAlloc dt=5020 heapalloc_value=207150168 -GoStop dt=12 reason_string=16 stack=3 -GoStart dt=16 g=94 g_seq=4 -HeapAlloc dt=57 heapalloc_value=207232088 -HeapAlloc dt=16 heapalloc_value=207330392 -HeapAlloc dt=47 heapalloc_value=207387736 -HeapAlloc dt=84 heapalloc_value=207445080 -HeapAlloc dt=70 heapalloc_value=207592536 -HeapAlloc dt=50 heapalloc_value=207633496 -GoStop dt=1541 reason_string=16 stack=3 -GoStart dt=21 g=83 g_seq=5 -HeapAlloc dt=47 heapalloc_value=208174168 -HeapAlloc dt=52209 heapalloc_value=212359704 -GoStop dt=10 reason_string=16 stack=3 -GoStart dt=97 g=109 g_seq=8 -HeapAlloc dt=78 heapalloc_value=212515352 -HeapAlloc dt=253 heapalloc_value=212777496 -GoStop dt=3145 reason_string=16 stack=3 -GoStart dt=20 g=109 g_seq=9 -HeapAlloc dt=8297 heapalloc_value=213957144 -GoStop dt=4182 reason_string=16 stack=3 -ProcStop dt=12 -ProcStart dt=2175 p=0 p_seq=1 -GoStart dt=5243 g=61 g_seq=6 -HeapAlloc dt=29 heapalloc_value=108803560 -EventBatch gen=6 m=18446744073709551615 time=22352100266394 size=533 +ProcStart dt=14 p=22 p_seq=5 +GoUnblock dt=4 g=54 g_seq=33 stack=0 +GoStart dt=159 g=54 g_seq=34 +GoLabel dt=1 label_string=4 +GoBlock dt=8 reason_string=15 stack=5 +ProcStop dt=32 +ProcStart dt=3156 p=29 p_seq=1 +GoUnblock dt=15 g=71 g_seq=43 stack=0 +GoStart dt=165 g=71 g_seq=44 +GoLabel dt=1 label_string=2 +GoBlock dt=1463 reason_string=15 stack=5 +GoStart dt=22 g=118 g_seq=4 +GCMarkAssistEnd dt=6 +HeapAlloc dt=903 heapalloc_value=195328728 +GoStop dt=6525 reason_string=16 stack=6 +GoStart dt=46 g=118 g_seq=5 +GCMarkAssistBegin dt=12 stack=3 +GoBlock dt=31 reason_string=13 stack=11 +ProcStop dt=194 +EventBatch gen=3 m=18446744073709551615 time=28114950975784 size=435 GoStatus dt=1 g=1 m=18446744073709551615 gstatus=4 -GoStatus dt=4 g=2 m=18446744073709551615 gstatus=4 -GoStatus dt=4 g=4 m=18446744073709551615 gstatus=4 -GoStatus dt=1 g=5 m=18446744073709551615 gstatus=4 -GoStatus dt=1 g=6 m=18446744073709551615 gstatus=4 -GoStatus dt=2 g=17 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=2 m=18446744073709551615 gstatus=4 +GoStatus dt=6 g=4 m=18446744073709551615 gstatus=4 +GoStatus dt=5 g=5 m=18446744073709551615 gstatus=4 +GoStatus dt=4 g=6 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=7 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=17 m=18446744073709551615 gstatus=4 GoStatus dt=3 g=33 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=18 m=18446744073709551615 gstatus=4 -GoStatus dt=2 g=19 m=18446744073709551615 gstatus=4 -GoStatus dt=1 g=34 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=20 m=18446744073709551615 gstatus=4 -GoStatus dt=1 g=21 m=18446744073709551615 gstatus=4 -GoStatus dt=2 g=7 m=18446744073709551615 gstatus=4 -GoStatus dt=7 g=35 m=18446744073709551615 gstatus=4 GoStatus dt=3 g=8 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=22 m=18446744073709551615 gstatus=4 -GoStatus dt=2 g=36 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=23 m=18446744073709551615 gstatus=4 -GoStatus dt=1 g=9 m=18446744073709551615 gstatus=4 -GoStatus dt=2 g=24 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=37 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=9 m=18446744073709551615 gstatus=4 GoStatus dt=3 g=10 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=38 m=18446744073709551615 gstatus=4 -GoStatus dt=7 g=26 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=27 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=14 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=28 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=29 m=18446744073709551615 gstatus=4 -GoStatus dt=2 g=43 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=30 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=45 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=18 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=11 m=18446744073709551615 gstatus=4 +GoStatus dt=4 g=34 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=19 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=12 m=18446744073709551615 gstatus=4 +GoStatus dt=2 g=20 m=18446744073709551615 gstatus=4 +GoStatus dt=4 g=35 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=13 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=21 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=36 m=18446744073709551615 gstatus=4 GoStatus dt=3 g=49 m=18446744073709551615 gstatus=4 GoStatus dt=3 g=50 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=31 m=18446744073709551615 gstatus=4 -GoStatus dt=2 g=32 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=51 m=18446744073709551615 gstatus=4 -GoStatus dt=3 g=52 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=15 m=18446744073709551615 gstatus=4 +GoStatus dt=4 g=65 m=18446744073709551615 gstatus=4 +GoStatus dt=2 g=66 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=26 m=18446744073709551615 gstatus=4 +GoStatus dt=4 g=55 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=27 m=18446744073709551615 gstatus=4 +GoStatus dt=3 g=37 m=18446744073709551615 gstatus=4 GoStatus dt=3 g=129 m=18446744073709551615 gstatus=4 -EventBatch gen=6 m=18446744073709551615 time=22352100266614 size=703 +EventBatch gen=3 m=18446744073709551615 time=28114950976078 size=1132 Stacks -Stack id=22 nframes=1 - pc=4302372 func=22 file=23 line=1435 -Stack id=6 nframes=2 - pc=4500744 func=24 file=25 line=103 - pc=4802747 func=26 file=27 line=60 -Stack id=5 nframes=4 - pc=4295433 func=28 file=23 line=629 - pc=4246870 func=29 file=30 line=1240 - pc=4500744 func=24 file=25 line=103 - pc=4802747 func=26 file=27 line=60 -Stack id=15 nframes=2 - pc=4540401 func=31 file=32 line=549 - pc=4544653 func=33 file=32 line=836 -Stack id=9 nframes=1 - pc=4544653 func=33 file=32 line=836 -Stack id=3 nframes=2 - pc=4500744 func=24 file=25 line=103 - pc=4802747 func=26 file=27 line=60 -Stack id=1 nframes=3 - pc=4553227 func=34 file=35 line=248 - pc=4539108 func=31 file=32 line=381 - pc=4544653 func=33 file=32 line=836 -Stack id=27 nframes=3 - pc=4300843 func=36 file=23 line=1198 - pc=4297205 func=37 file=23 line=928 - pc=4302372 func=22 file=23 line=1435 -Stack id=16 nframes=1 - pc=4544653 func=33 file=32 line=836 -Stack id=25 nframes=4 - pc=4612359 func=38 file=39 line=474 - pc=4297943 func=36 file=23 line=966 - pc=4297205 func=37 file=23 line=928 - pc=4302372 func=22 file=23 line=1435 +Stack id=20 nframes=2 + pc=4540421 func=22 file=23 line=363 + pc=4546157 func=24 file=23 line=874 +Stack id=21 nframes=5 + pc=4312466 func=25 file=26 line=564 + pc=4247187 func=27 file=28 line=1333 + pc=4245160 func=29 file=28 line=1021 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=18 nframes=6 + pc=4296626 func=34 file=35 line=807 + pc=4312466 func=25 file=26 line=564 + pc=4247187 func=27 file=28 line=1333 + pc=4245160 func=29 file=28 line=1021 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=26 nframes=7 + pc=4300939 func=36 file=35 line=1196 + pc=4297301 func=34 file=35 line=926 + pc=4312466 func=25 file=26 line=564 + pc=4247187 func=27 file=28 line=1333 + pc=4245160 func=29 file=28 line=1021 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=7 nframes=7 + pc=4709082 func=37 file=38 line=964 + pc=4738119 func=39 file=40 line=209 + pc=4738111 func=41 file=42 line=736 + pc=4737664 func=43 file=42 line=380 + pc=4739536 func=44 file=45 line=46 + pc=4739528 func=46 file=47 line=183 + pc=4803162 func=48 file=49 line=134 +Stack id=10 nframes=4 + pc=4295522 func=50 file=35 line=627 + pc=4246870 func=29 file=28 line=1288 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=29 nframes=8 + pc=4556437 func=51 file=52 line=352 + pc=4341796 func=53 file=54 line=521 + pc=4279859 func=55 file=56 line=127 + pc=4277746 func=57 file=58 line=182 + pc=4244580 func=59 file=28 line=944 + pc=4245653 func=29 file=28 line=1116 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 Stack id=14 nframes=1 - pc=4544653 func=33 file=32 line=836 -Stack id=11 nframes=2 - pc=4296712 func=37 file=23 line=825 - pc=4302372 func=22 file=23 line=1435 -Stack id=4 nframes=7 - pc=4707386 func=40 file=41 line=949 - pc=4736391 func=42 file=43 line=209 - pc=4736383 func=44 file=45 line=736 - pc=4735936 func=46 file=45 line=380 - pc=4737808 func=47 file=48 line=46 - pc=4737800 func=49 file=50 line=183 - pc=4801434 func=51 file=52 line=134 -Stack id=10 nframes=1 + pc=4546157 func=24 file=23 line=874 +Stack id=17 nframes=1 pc=0 func=0 file=0 line=0 -Stack id=23 nframes=6 - pc=4557335 func=53 file=54 line=163 - pc=4557266 func=55 file=35 line=438 - pc=4446426 func=56 file=57 line=3694 - pc=4313849 func=58 file=59 line=714 - pc=4297142 func=37 file=23 line=911 - pc=4302372 func=22 file=23 line=1435 +Stack id=19 nframes=2 + pc=4540420 func=22 file=23 line=353 + pc=4546157 func=24 file=23 line=874 +Stack id=13 nframes=1 + pc=0 func=0 file=0 line=0 +Stack id=5 nframes=2 + pc=4418893 func=60 file=61 line=402 + pc=4301860 func=62 file=35 line=1297 +Stack id=25 nframes=7 + pc=4298957 func=36 file=35 line=1087 + pc=4297301 func=34 file=35 line=926 + pc=4312466 func=25 file=26 line=564 + pc=4247187 func=27 file=28 line=1333 + pc=4245160 func=29 file=28 line=1021 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=4 nframes=2 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=30 nframes=6 + pc=4297308 func=34 file=35 line=817 + pc=4312466 func=25 file=26 line=564 + pc=4247187 func=27 file=28 line=1333 + pc=4245160 func=29 file=28 line=1021 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=11 nframes=6 + pc=4314276 func=63 file=26 line=749 + pc=4312530 func=25 file=26 line=589 + pc=4247187 func=27 file=28 line=1333 + pc=4245160 func=29 file=28 line=1021 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=6 nframes=2 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=15 nframes=1 + pc=4546157 func=24 file=23 line=874 Stack id=8 nframes=1 - pc=4801444 func=51 file=52 line=130 -Stack id=2 nframes=6 - pc=4555265 func=60 file=35 line=371 - pc=4312132 func=61 file=59 line=536 - pc=4247187 func=62 file=30 line=1285 - pc=4245160 func=29 file=30 line=1000 - pc=4500744 func=24 file=25 line=103 - pc=4802747 func=26 file=27 line=60 -Stack id=21 nframes=6 - pc=4314084 func=63 file=59 line=749 - pc=4312420 func=61 file=59 line=589 - pc=4247187 func=62 file=30 line=1285 - pc=4245160 func=29 file=30 line=1000 - pc=4500744 func=24 file=25 line=103 - pc=4802747 func=26 file=27 line=60 -Stack id=13 nframes=2 - pc=4296530 func=37 file=23 line=809 - pc=4302372 func=22 file=23 line=1435 -Stack id=26 nframes=3 - pc=4298844 func=36 file=23 line=1089 - pc=4297205 func=37 file=23 line=928 - pc=4302372 func=22 file=23 line=1435 -Stack id=12 nframes=5 - pc=4295449 func=64 file=65 line=172 - pc=4295433 func=28 file=23 line=629 - pc=4246870 func=29 file=30 line=1240 - pc=4500744 func=24 file=25 line=103 - pc=4802747 func=26 file=27 line=60 -Stack id=19 nframes=6 - pc=4296530 func=37 file=23 line=809 - pc=4312348 func=61 file=59 line=564 - pc=4247187 func=62 file=30 line=1285 - pc=4245160 func=29 file=30 line=1000 - pc=4500744 func=24 file=25 line=103 - pc=4802747 func=26 file=27 line=60 -Stack id=7 nframes=2 - pc=4418189 func=66 file=57 line=402 - pc=4301764 func=22 file=23 line=1299 -Stack id=24 nframes=2 - pc=4297143 func=37 file=23 line=916 - pc=4302372 func=22 file=23 line=1435 -Stack id=20 nframes=2 - pc=4296840 func=37 file=23 line=853 - pc=4302372 func=22 file=23 line=1435 -Stack id=18 nframes=2 - pc=4538917 func=31 file=32 line=353 - pc=4544653 func=33 file=32 line=836 -Stack id=17 nframes=3 - pc=4217457 func=67 file=68 line=442 - pc=4544813 func=69 file=32 line=880 - pc=4544646 func=33 file=32 line=833 -EventBatch gen=6 m=18446744073709551615 time=22352100052158 size=2344 + pc=0 func=0 file=0 line=0 +Stack id=12 nframes=2 + pc=4614055 func=64 file=65 line=474 + pc=4302129 func=62 file=35 line=1357 +Stack id=3 nframes=6 + pc=4556897 func=66 file=52 line=378 + pc=4312252 func=25 file=26 line=536 + pc=4247187 func=27 file=28 line=1333 + pc=4245160 func=29 file=28 line=1021 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=9 nframes=5 + pc=4312495 func=25 file=26 line=576 + pc=4247187 func=27 file=28 line=1333 + pc=4245160 func=29 file=28 line=1021 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=24 nframes=8 + pc=4614055 func=64 file=65 line=474 + pc=4298031 func=36 file=35 line=964 + pc=4297301 func=34 file=35 line=926 + pc=4312466 func=25 file=26 line=564 + pc=4247187 func=27 file=28 line=1333 + pc=4245160 func=29 file=28 line=1021 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=23 nframes=6 + pc=4297239 func=34 file=35 line=914 + pc=4312466 func=25 file=26 line=564 + pc=4247187 func=27 file=28 line=1333 + pc=4245160 func=29 file=28 line=1021 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=2 nframes=1 + pc=4803172 func=48 file=49 line=130 +Stack id=28 nframes=8 + pc=4556437 func=51 file=52 line=352 + pc=4341796 func=53 file=54 line=521 + pc=4280028 func=55 file=56 line=147 + pc=4277746 func=57 file=58 line=182 + pc=4244580 func=59 file=28 line=944 + pc=4246070 func=29 file=28 line=1145 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=27 nframes=5 + pc=4353658 func=67 file=68 line=958 + pc=4278148 func=69 file=58 line=234 + pc=4246244 func=29 file=28 line=1160 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=16 nframes=3 + pc=4217457 func=70 file=71 line=442 + pc=4546317 func=72 file=23 line=918 + pc=4546150 func=24 file=23 line=871 +Stack id=31 nframes=8 + pc=4353658 func=67 file=68 line=958 + pc=4280657 func=73 file=56 line=254 + pc=4280247 func=55 file=56 line=170 + pc=4277746 func=57 file=58 line=182 + pc=4244580 func=59 file=28 line=944 + pc=4246070 func=29 file=28 line=1145 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +Stack id=1 nframes=3 + pc=4554859 func=74 file=52 line=255 + pc=4540633 func=22 file=23 line=391 + pc=4546157 func=24 file=23 line=874 +Stack id=22 nframes=10 + pc=4558967 func=75 file=76 line=166 + pc=4558898 func=77 file=52 line=445 + pc=4447453 func=78 file=61 line=3712 + pc=4314041 func=79 file=26 line=714 + pc=4297238 func=34 file=35 line=909 + pc=4312466 func=25 file=26 line=564 + pc=4247187 func=27 file=28 line=1333 + pc=4245160 func=29 file=28 line=1021 + pc=4502184 func=30 file=31 line=103 + pc=4804475 func=32 file=33 line=60 +EventBatch gen=3 m=18446744073709551615 time=28114950894688 size=2762 Strings String id=1 data="Not worker" @@ -2347,98 +4090,118 @@ String id=20 String id=21 data="GC mark termination" String id=22 - data="runtime.gcBgMarkWorker" + data="runtime.traceAdvance" String id=23 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgc.go" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2.go" String id=24 - data="runtime.makeslice" + data="runtime.(*traceAdvancerState).start.func1" String id=25 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/slice.go" + data="runtime.gcAssistAlloc" String id=26 - data="main.main.func1" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgcmark.go" String id=27 - data="/usr/local/google/home/mknyszek/work/go-1/src/internal/trace/v2/testdata/testprog/gc-stress.go" + data="runtime.deductAssistCredit" String id=28 - data="runtime.gcStart" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/malloc.go" String id=29 data="runtime.mallocgc" String id=30 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/malloc.go" + data="runtime.makeslice" String id=31 - data="runtime.traceAdvance" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/slice.go" String id=32 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2.go" + data="main.main.func1" String id=33 - data="runtime.(*traceAdvancerState).start.func1" + data="/usr/local/google/home/mknyszek/work/go-1/src/internal/trace/v2/testdata/testprog/gc-stress.go" String id=34 - data="runtime.traceLocker.Gomaxprocs" + data="runtime.gcMarkDone" String id=35 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2runtime.go" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgc.go" String id=36 data="runtime.gcMarkTermination" String id=37 - data="runtime.gcMarkDone" + data="syscall.write" String id=38 - data="runtime.systemstack_switch" + data="/usr/local/google/home/mknyszek/work/go-1/src/syscall/zsyscall_linux_amd64.go" String id=39 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/asm_amd64.s" + data="syscall.Write" String id=40 - data="syscall.write" + data="/usr/local/google/home/mknyszek/work/go-1/src/syscall/syscall_unix.go" String id=41 - data="/usr/local/google/home/mknyszek/work/go-1/src/syscall/zsyscall_linux_amd64.go" + data="internal/poll.ignoringEINTRIO" String id=42 - data="syscall.Write" + data="/usr/local/google/home/mknyszek/work/go-1/src/internal/poll/fd_unix.go" String id=43 - data="/usr/local/google/home/mknyszek/work/go-1/src/syscall/syscall_unix.go" + data="internal/poll.(*FD).Write" String id=44 - data="internal/poll.ignoringEINTRIO" + data="os.(*File).write" String id=45 - data="/usr/local/google/home/mknyszek/work/go-1/src/internal/poll/fd_unix.go" + data="/usr/local/google/home/mknyszek/work/go-1/src/os/file_posix.go" String id=46 - data="internal/poll.(*FD).Write" + data="os.(*File).Write" String id=47 - data="os.(*File).write" + data="/usr/local/google/home/mknyszek/work/go-1/src/os/file.go" String id=48 - data="/usr/local/google/home/mknyszek/work/go-1/src/os/file_posix.go" + data="runtime/trace.Start.func1" String id=49 - data="os.(*File).Write" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/trace.go" String id=50 - data="/usr/local/google/home/mknyszek/work/go-1/src/os/file.go" + data="runtime.gcStart" String id=51 - data="runtime/trace.Start.func1" + data="runtime.traceLocker.GCSweepSpan" String id=52 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace/trace.go" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2runtime.go" String id=53 - data="runtime.traceLocker.stack" + data="runtime.(*sweepLocked).sweep" String id=54 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2event.go" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgcsweep.go" String id=55 - data="runtime.traceLocker.GoUnpark" + data="runtime.(*mcentral).cacheSpan" String id=56 - data="runtime.injectglist" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mcentral.go" String id=57 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/proc.go" + data="runtime.(*mcache).refill" String id=58 - data="runtime.gcWakeAllAssists" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mcache.go" String id=59 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgcmark.go" + data="runtime.(*mcache).nextFree" String id=60 - data="runtime.traceLocker.GCMarkAssistStart" + data="runtime.gopark" String id=61 - data="runtime.gcAssistAlloc" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/proc.go" String id=62 - data="runtime.deductAssistCredit" + data="runtime.gcBgMarkWorker" String id=63 data="runtime.gcParkAssist" String id=64 - data="runtime.semrelease" + data="runtime.systemstack_switch" String id=65 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/sema.go" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/asm_amd64.s" String id=66 - data="runtime.gopark" + data="runtime.traceLocker.GCMarkAssistStart" String id=67 - data="runtime.chanrecv1" + data="runtime.(*mheap).alloc" String id=68 - data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/chan.go" + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mheap.go" String id=69 + data="runtime.(*mcache).allocLarge" +String id=70 + data="runtime.chanrecv1" +String id=71 + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/chan.go" +String id=72 data="runtime.(*wakeableSleep).sleep" +String id=73 + data="runtime.(*mcentral).grow" +String id=74 + data="runtime.traceLocker.Gomaxprocs" +String id=75 + data="runtime.traceLocker.stack" +String id=76 + data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/trace2event.go" +String id=77 + data="runtime.traceLocker.GoUnpark" +String id=78 + data="runtime.injectglist" +String id=79 + data="runtime.gcWakeAllAssists" diff --git a/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-ambiguous.test b/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-ambiguous.test new file mode 100644 index 0000000000..0d88af4d61 --- /dev/null +++ b/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-ambiguous.test @@ -0,0 +1,21 @@ +-- expect -- +SUCCESS +-- trace -- +Trace Go1.22 +EventBatch gen=1 m=0 time=0 size=21 +ProcStatus dt=0 p=0 pstatus=1 +GoStatus dt=0 g=1 m=0 gstatus=2 +GoSyscallBegin dt=0 p_seq=1 stack=0 +GoSyscallEnd dt=0 +GoSyscallBegin dt=0 p_seq=2 stack=0 +GoSyscallEndBlocked dt=0 +EventBatch gen=1 m=1 time=0 size=14 +ProcStatus dt=0 p=2 pstatus=1 +GoStatus dt=0 g=2 m=1 gstatus=2 +ProcSteal dt=0 p=0 p_seq=3 m=0 +EventBatch gen=1 m=18446744073709551615 time=0 size=5 +Frequency freq=15625000 +EventBatch gen=1 m=18446744073709551615 time=0 size=1 +Stacks +EventBatch gen=1 m=18446744073709551615 time=0 size=1 +Strings diff --git a/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-reacquire-new-proc-bare-m.test b/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-reacquire-new-proc-bare-m.test index 638cc0d8be..fa68c824b9 100644 --- a/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-reacquire-new-proc-bare-m.test +++ b/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-reacquire-new-proc-bare-m.test @@ -2,15 +2,15 @@ SUCCESS -- trace -- Trace Go1.22 -EventBatch gen=1 m=0 time=0 size=22 +EventBatch gen=1 m=0 time=0 size=23 ProcStatus dt=1 p=1 pstatus=2 ProcStatus dt=1 p=0 pstatus=1 GoStatus dt=1 g=1 m=0 gstatus=2 -GoSyscallBegin dt=1 stack=0 +GoSyscallBegin dt=1 p_seq=1 stack=0 ProcStart dt=1 p=1 p_seq=1 GoSyscallEndBlocked dt=1 EventBatch gen=1 m=1 time=0 size=5 -ProcSteal dt=1 p=0 p_seq=1 m=0 +ProcSteal dt=1 p=0 p_seq=2 m=0 EventBatch gen=1 m=18446744073709551615 time=0 size=5 Frequency freq=15625000 EventBatch gen=1 m=18446744073709551615 time=0 size=1 diff --git a/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-reacquire-new-proc.test b/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-reacquire-new-proc.test index 78f20e594e..85c19fcf05 100644 --- a/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-reacquire-new-proc.test +++ b/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-reacquire-new-proc.test @@ -2,17 +2,17 @@ SUCCESS -- trace -- Trace Go1.22 -EventBatch gen=1 m=0 time=0 size=22 +EventBatch gen=1 m=0 time=0 size=23 ProcStatus dt=1 p=1 pstatus=2 ProcStatus dt=1 p=0 pstatus=1 GoStatus dt=1 g=1 m=0 gstatus=2 -GoSyscallBegin dt=1 stack=0 +GoSyscallBegin dt=1 p_seq=1 stack=0 ProcStart dt=1 p=1 p_seq=1 GoSyscallEndBlocked dt=1 EventBatch gen=1 m=1 time=0 size=14 ProcStatus dt=1 p=2 pstatus=1 GoStatus dt=1 g=2 m=1 gstatus=2 -ProcSteal dt=1 p=0 p_seq=1 m=0 +ProcSteal dt=1 p=0 p_seq=2 m=0 EventBatch gen=1 m=18446744073709551615 time=0 size=5 Frequency freq=15625000 EventBatch gen=1 m=18446744073709551615 time=0 size=1 diff --git a/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-simple-bare-m.test b/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-simple-bare-m.test index fe2d089cd6..d33872287d 100644 --- a/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-simple-bare-m.test +++ b/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-simple-bare-m.test @@ -2,13 +2,13 @@ SUCCESS -- trace -- Trace Go1.22 -EventBatch gen=1 m=0 time=0 size=14 +EventBatch gen=1 m=0 time=0 size=15 ProcStatus dt=1 p=0 pstatus=1 GoStatus dt=1 g=1 m=0 gstatus=2 -GoSyscallBegin dt=1 stack=0 +GoSyscallBegin dt=1 p_seq=1 stack=0 GoSyscallEndBlocked dt=1 EventBatch gen=1 m=1 time=0 size=5 -ProcSteal dt=1 p=0 p_seq=1 m=0 +ProcSteal dt=1 p=0 p_seq=2 m=0 EventBatch gen=1 m=18446744073709551615 time=0 size=5 Frequency freq=15625000 EventBatch gen=1 m=18446744073709551615 time=0 size=1 diff --git a/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-simple.test b/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-simple.test index 2b33dce241..a1f9db41d4 100644 --- a/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-simple.test +++ b/src/internal/trace/v2/testdata/tests/go122-syscall-steal-proc-simple.test @@ -2,15 +2,15 @@ SUCCESS -- trace -- Trace Go1.22 -EventBatch gen=1 m=0 time=0 size=14 +EventBatch gen=1 m=0 time=0 size=15 ProcStatus dt=1 p=0 pstatus=1 GoStatus dt=1 g=1 m=0 gstatus=2 -GoSyscallBegin dt=1 stack=0 +GoSyscallBegin dt=1 p_seq=1 stack=0 GoSyscallEndBlocked dt=1 EventBatch gen=1 m=1 time=0 size=14 ProcStatus dt=1 p=2 pstatus=1 GoStatus dt=1 g=2 m=1 gstatus=2 -ProcSteal dt=1 p=0 p_seq=1 m=0 +ProcSteal dt=1 p=0 p_seq=2 m=0 EventBatch gen=1 m=18446744073709551615 time=0 size=5 Frequency freq=15625000 EventBatch gen=1 m=18446744073709551615 time=0 size=1 diff --git a/src/internal/trace/v2/trace_test.go b/src/internal/trace/v2/trace_test.go index 4984f211a4..7823b01e93 100644 --- a/src/internal/trace/v2/trace_test.go +++ b/src/internal/trace/v2/trace_test.go @@ -524,10 +524,6 @@ func TestTraceManyStartStop(t *testing.T) { func testTraceProg(t *testing.T, progName string, extra func(t *testing.T, trace, stderr []byte, stress bool)) { testenv.MustHaveGoRun(t) - if runtime.GOOS == "windows" { - t.Skip("temporarily disabled on Windows for #64061") - } - // Check if we're on a builder. onBuilder := testenv.Builder() != "" diff --git a/src/runtime/trace2event.go b/src/runtime/trace2event.go index f7abf60c5f..1f2a9f754b 100644 --- a/src/runtime/trace2event.go +++ b/src/runtime/trace2event.go @@ -52,7 +52,7 @@ const ( traceEvGoStop // goroutine yields its time, but is runnable [timestamp, reason, stack ID] traceEvGoBlock // goroutine blocks [timestamp, reason, stack ID] traceEvGoUnblock // goroutine is unblocked [timestamp, goroutine ID, goroutine seq, stack ID] - traceEvGoSyscallBegin // syscall enter [timestamp, stack ID] + traceEvGoSyscallBegin // syscall enter [timestamp, P seq, stack ID] traceEvGoSyscallEnd // syscall exit [timestamp] traceEvGoSyscallEndBlocked // syscall exit and it blocked at some point [timestamp] traceEvGoStatus // goroutine status at the start of a generation [timestamp, goroutine ID, M ID, status] diff --git a/src/runtime/trace2runtime.go b/src/runtime/trace2runtime.go index 74aeb57d80..b6837d0360 100644 --- a/src/runtime/trace2runtime.go +++ b/src/runtime/trace2runtime.go @@ -465,8 +465,9 @@ func (tl traceLocker) GoSysCall() { skip = 4 } // Scribble down the M that the P is currently attached to. - tl.mp.p.ptr().trace.mSyscallID = int64(tl.mp.procid) - tl.eventWriter(traceGoRunning, traceProcRunning).commit(traceEvGoSyscallBegin, tl.stack(skip)) + pp := tl.mp.p.ptr() + pp.trace.mSyscallID = int64(tl.mp.procid) + tl.eventWriter(traceGoRunning, traceProcRunning).commit(traceEvGoSyscallBegin, pp.trace.nextSeq(tl.gen), tl.stack(skip)) } // GoSysExit emits a GoSyscallEnd event, possibly along with a GoSyscallBlocked event -- 2.50.0