fiber/middleware/pprof
Muhammed Efe Çetin 41866cd3dd
👷 v3 (ci): fix some linter warnings
2023-03-06 17:35:39 +03:00
..
README.md v3 (chore): cleanup (#2255) 2022-12-03 15:39:57 +03:00
config.go 👷 v3 (ci): fix some linter warnings 2023-03-06 17:35:39 +03:00
pprof.go Merge remote-tracking branch 'origin/master' into v3-beta 2023-02-05 23:43:42 +03:00
pprof_test.go Merge remote-tracking branch 'origin/master' into v3-beta 2023-02-05 23:43:42 +03:00

README.md

Pprof

Pprof middleware for Fiber that serves via its HTTP server runtime profiling data in the format expected by the pprof visualization tool. The package is typically only imported for the side effect of registering its HTTP handlers. The handled paths all begin with /debug/pprof/.

Signatures

func New() fiber.Handler

Examples

Import the middleware package that is part of the Fiber web framework

import (
  "github.com/gofiber/fiber/v3"
  "github.com/gofiber/fiber/v3/middleware/pprof"
)

After you initiate your Fiber app, you can use the following possibilities:

// Default middleware
app.Use(pprof.New())

In systems where you have multiple ingress endpoints, it is common to add a URL prefix, like so:

// Default middleware
app.Use(pprof.New(pprof.Config{Prefix: "/endpoint-prefix"}))

This prefix will be added to the default path of "/debug/pprof/", for a resulting URL of: "/endpoint-prefix/debug/pprof/".

Config

// Config defines the config for middleware.
type Config struct {	
	// Next defines a function to skip this middleware when returned true.
	//
	// Optional. Default: nil
	Next func(c fiber.Ctx) bool

	// Prefix defines a URL prefix added before "/debug/pprof".
	// Note that it should start with (but not end with) a slash.
	// Example: "/federated-fiber"
	//
	// Optional. Default: ""
	Prefix string
}

Default Config

var ConfigDefault = Config{
	Next: nil,
}