Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PPROF_BINARY_PATH (0.31 sec)

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

    		}
    		symbolizeOneMapping(m, locs, f, addFunction)
    		f.Close()
    	}
    
    	if missingBinaries {
    		ui.PrintErr("Some binary filenames not available. Symbolization may be incomplete.\n" +
    			"Try setting PPROF_BINARY_PATH to the search path for local binaries.")
    	}
    	return nil
    }
    
    func symbolizeOneMapping(m *profile.Mapping, locs []*profile.Location, obj plugin.ObjFile, addFunction func(*profile.Function) *profile.Function) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	"\n" +
    	"  Environment Variables:\n" +
    	"   PPROF_TMPDIR       Location for saved profiles (default $HOME/pprof)\n" +
    	"   PPROF_TOOLS        Search path for object-level tools\n" +
    	"   PPROF_BINARY_PATH  Search path for local binary files\n" +
    	"                      default: $HOME/pprof/binaries\n" +
    	"                      searches $buildid/$name, $buildid/*, $path/$buildid,\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    // updates the profile accordingly.
    func locateBinaries(p *profile.Profile, s *source, obj plugin.ObjTool, ui plugin.UI) {
    	// Construct search path to examine
    	searchPath := os.Getenv("PPROF_BINARY_PATH")
    	if searchPath == "" {
    		// Use $HOME/pprof/binaries as default directory for local symbolization binaries
    		searchPath = filepath.Join(os.Getenv(homeEnv()), "pprof", "binaries")
    	}
    mapping:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top