SetVariableDefault sets the default value for a pprof variable. This enables extensions to set their own defaults.
(variable, value string)
| 69 | // SetVariableDefault sets the default value for a pprof |
| 70 | // variable. This enables extensions to set their own defaults. |
| 71 | func SetVariableDefault(variable, value string) { |
| 72 | configure(variable, value) |
| 73 | } |
| 74 | |
| 75 | // PostProcessor is a function that applies post-processing to the report output |
| 76 | type PostProcessor func(input io.Reader, output io.Writer, ui plugin.UI) error |
nothing calls this directly
no test coverage detected
searching dependent graphs…