Skip to content

Commit

Permalink
diagnostics: all pprofs (#11891)
Browse files Browse the repository at this point in the history
Extended pprof read API to include: goroutine, threadcreate, heap,
allocs, block, mutex
  • Loading branch information
dvovk committed Sep 7, 2024
1 parent 5b0fd09 commit c0057be
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 2 deletions.
53 changes: 53 additions & 0 deletions diagnostics/profile.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
// Copyright 2024 The Erigon Authors
// This file is part of Erigon.
//
// Erigon is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Erigon is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Erigon. If not, see <http://www.gnu.org/licenses/>.

package diagnostics

import (
"fmt"
"net/http"
"runtime/pprof"
"strings"

diaglib "github.com/erigontech/erigon-lib/diagnostics"
)

func SetupProfileAccess(metricsMux *http.ServeMux, diag *diaglib.DiagnosticClient) {
if metricsMux == nil {
return
}

//handle all pprof, supported: goroutine, threadcreate, heap, allocs, block, mutex
metricsMux.HandleFunc("/pprof/", func(w http.ResponseWriter, r *http.Request) {
profile := strings.TrimPrefix(r.URL.Path, "/pprof/")
writePprofProfile(w, profile)
})
}

func writePprofProfile(w http.ResponseWriter, profile string) {
p := pprof.Lookup(profile)
if p == nil {
http.Error(w, "Unknown profile: "+profile, http.StatusNotFound)
return
}

w.Header().Set("Content-Type", "aplication/profile")
err := p.WriteTo(w, 0)
if err != nil {
http.Error(w, fmt.Sprintf("Failed to write profile: %v", err), http.StatusInternalServerError)
return
}
}
1 change: 1 addition & 0 deletions diagnostics/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,5 @@ func SetupEndpoints(ctx *cli.Context, node *node.ErigonNode, diagMux *http.Serve
SetupHeadersAccess(diagMux, diagnostic)
SetupBodiesAccess(diagMux, diagnostic)
SetupSysInfoAccess(diagMux, diagnostic)
SetupProfileAccess(diagMux, diagnostic)
}
5 changes: 3 additions & 2 deletions diagnostics/sysinfo.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ package diagnostics

import (
"encoding/json"
"fmt"
"net/http"
"runtime/pprof"

diaglib "github.com/ledgerwatch/erigon-lib/diagnostics"
"github.com/ledgerwatch/erigon-lib/sysutils"
Expand Down Expand Up @@ -54,6 +52,7 @@ func SetupSysInfoAccess(metricsMux *http.ServeMux, diag *diaglib.DiagnosticClien
w.Header().Set("Content-Type", "application/json")
writeMemoryInfo(w)
})
<<<<<<< HEAD

metricsMux.HandleFunc("/heap-profile", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Access-Control-Allow-Origin", "*")
Expand All @@ -68,6 +67,8 @@ func writeHeapProfile(w http.ResponseWriter) {
http.Error(w, fmt.Sprintf("Failed to write profile: %v", err), http.StatusInternalServerError)
return
}
=======
>>>>>>> a899646eed (diagnostics: all pprofs (#11891))
}

func writeHardwareInfo(w http.ResponseWriter, diag *diaglib.DiagnosticClient) {
Expand Down

0 comments on commit c0057be

Please sign in to comment.