We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a742f1a commit 412698cCopy full SHA for 412698c
cmd/symbolization/main.go
@@ -6,6 +6,7 @@ import (
6
"log"
7
8
pprof "github.com/google/pprof/profile"
9
+
10
"github.com/grafana/pyroscope/pkg/experiment/symbolization"
11
)
12
@@ -95,10 +96,13 @@ func main() {
95
96
}
97
98
// localDebuginfodClient provides a way to use local debug info files instead of fetching from a server
99
+//
100
+//nolint:all
101
type localDebuginfodClient struct {
102
debugFilePath string
103
104
105
106
func (c *localDebuginfodClient) FetchDebuginfo(buildID string) (string, error) {
107
return c.debugFilePath, nil
108
0 commit comments