cmd/trace: support splitting in goroutine view #51349
Labels
compiler/runtime
Issues related to the Go compiler and/or runtime.
FeatureRequest
Issues asking for a new feature that does not need a proposal.
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone
For the main trace view, we support splitting the trace into smaller time chunks. e.g.,
/trace?start=966781&end=1937169
. This is used to split the trace into small chunks that will (hopefully) prevent the viewer from choking on too much data.The goroutines view (
/trace?goid=1
) does not provide links to a split view. In theory, this can be done manually by addingstart
andend
parameters to the URL. In my experience, this works fine ifstart=0
(it will provide a trace truncated at theend
time). However, any start time other than 0 results in an empty trace.cc @mknyszek
The text was updated successfully, but these errors were encountered: