Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for stackView (0.08 sec)

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

    package driver
    
    import (
    	"encoding/json"
    	"html/template"
    	"net/http"
    
    	"github.com/google/pprof/internal/measurement"
    	"github.com/google/pprof/internal/report"
    )
    
    // stackView generates the flamegraph view.
    func (ui *webInterface) stackView(w http.ResponseWriter, req *http.Request) {
    	// Get all data in a report.
    	rpt, errList := ui.makeReport(w, req, []string{"svg"}, func(cfg *config) {
    		cfg.CallTree = true
    		cfg.Trim = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    			"/disasm":        http.HandlerFunc(ui.disasm),
    			"/source":        http.HandlerFunc(ui.source),
    			"/peek":          http.HandlerFunc(ui.peek),
    			"/flamegraph":    http.HandlerFunc(ui.stackView),
    			"/flamegraph2":   redirectWithQuery("flamegraph", http.StatusMovedPermanently), // Keep legacy URL working.
    			"/flamegraphold": redirectWithQuery("flamegraph", http.StatusMovedPermanently), // Keep legacy URL working.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top