Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fetchProfiles (0.19 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	"github.com/google/pprof/internal/plugin"
    	"github.com/google/pprof/profile"
    )
    
    // fetchProfiles fetches and symbolizes the profiles specified by s.
    // It will merge all the profiles it is able to retrieve, even if
    // there are some failures. It will return an error if it is unable to
    // fetch any profiles.
    func fetchProfiles(s *source, o *plugin.Options) (*profile.Profile, error) {
    	sources := make([]profileSource, 0, len(s.Sources))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	// Remove any temporary files created during pprof processing.
    	defer cleanupTempFiles()
    
    	o := setDefaults(eo)
    
    	src, cmd, err := parseFlags(o)
    	if err != nil {
    		return err
    	}
    
    	p, err := fetchProfiles(src, o)
    	if err != nil {
    		return err
    	}
    
    	if cmd != nil {
    		return generateReport(p, cmd, currentConfig(), o)
    	}
    
    	if src.HTTPHostport != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top