Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/tracepipe/trace_pipe.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func New() (*TracePipe, error) {

// A line from trace_pipe looks like (leading spaces included):
// ` chromium-15581 [000] d... 92783.722567: : Hello, World!`
var traceLineRegexp = regexp.MustCompile(`(.{16})-(\d+) +\[(\d{3})\] (.{4}) +(\d+\.\d+)\: (.*?)\: (.*)`)
var traceLineRegexp = regexp.MustCompile(`(.{16})-(\d+) +\[(\d{3})\] (.{4,}) +(\d+\.\d+)\: (.*?)\: (.*)`)

func parseTraceLine(raw string) (*TraceEvent, error) {
fields := traceLineRegexp.FindStringSubmatch(raw)
Expand Down