Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ConfigDefault = Config{ Next: nil, }
Functions ¶
Types ¶
type Config ¶
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 // Optional metrics to expose, if not specified it will take all Metric from expvar Exposed *map[string]metric.Metric }