A Fetcher reads and returns the profile named by src. src can be a local file path or a URL. duration and timeout are units specified by the end user, or 0 by default. duration refers to the length of the profile collection, if applicable, and timeout is the amount of time to wait for a profile befo
| 90 | // fetched profile, the URL of the actual source of the profile, or an |
| 91 | // error. |
| 92 | type Fetcher interface { |
| 93 | Fetch(src string, duration, timeout time.Duration) (*profile.Profile, string, error) |
| 94 | } |
| 95 | |
| 96 | // A Symbolizer introduces symbol information into a profile. |
| 97 | type Symbolizer interface { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…