Options groups all the optional plugins into pprof.
| 67 | |
| 68 | // Options groups all the optional plugins into pprof. |
| 69 | type Options struct { |
| 70 | Writer Writer |
| 71 | Flagset FlagSet |
| 72 | Fetch Fetcher |
| 73 | Sym Symbolizer |
| 74 | Obj ObjTool |
| 75 | UI UI |
| 76 | HTTPServer func(*HTTPServerArgs) error |
| 77 | HTTPTransport http.RoundTripper |
| 78 | } |
| 79 | |
| 80 | // Writer provides a mechanism to write data under a certain name, |
| 81 | // typically a filename. |
nothing calls this directly
no outgoing calls
no test coverage detected