MCPcopy Create free account
hub / github.com/maruel/panicparse / Bucket

Struct Bucket

stack/bucket.go:102–113  ·  view source on GitHub ↗

Bucket is a stack trace signature and the list of goroutines that fits this signature.

Source from the content-addressed store, hash-verified

100// Bucket is a stack trace signature and the list of goroutines that fits this
101// signature.
102type Bucket struct {
103 // Signature is the generalized signature for this bucket.
104 Signature
105 // IDs is the ID of each Goroutine with this Signature.
106 IDs []int
107 // First is true if this Bucket contains the first goroutine, e.g. the one
108 // Signature that likely generated the panic() call, if any.
109 First bool
110
111 // Disallow initialization with unnamed parameters.
112 _ struct{}
113}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected