1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-23 11:43:41 +00:00
fiber/middleware/pprof/README.md
Fenny ec5d66e7a8 v2
2020-09-13 11:20:11 +02:00

739 B

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

Example

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

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

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

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