Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sevennt/echo-pprof

echo-pprof is a wrapper for golang web framework echo to use net/http/pprof easily.
https://github.com/sevennt/echo-pprof

echo golang pprof profile profiling

Last synced: 3 months ago
JSON representation

echo-pprof is a wrapper for golang web framework echo to use net/http/pprof easily.

Awesome Lists containing this project

README

        

echo-pprof
========

A wrapper for [Echo web framework](https://github.com/labstack/echo) to use `net/http/pprof` easily.

## Install

```sh
go get -u github.com/sevenNt/echo-pprof
```

## Usage

```go
package main

import (
"github.com/labstack/echo/v4"
"github.com/sevenNt/echo-pprof"
)

func main() {
e := echo.New()

e.GET("/ping", func(c echo.Context) error {
return c.String(200, "pong")
})

// automatically add routers for net/http/pprof
// e.g. /debug/pprof, /debug/pprof/heap, etc.
echopprof.Wrap(e)

// echopprof also plays well with *echo.Group
// prefix := "/debug/pprof"
// group := e.Group(prefix)
// echopprof.WrapGroup(prefix, group)

e.Start(":8080")
}
```

Start this server, and then visit [http://127.0.0.1:8080/debug/pprof/](http://127.0.0.1:8080/debug/pprof/), and you'll see the pprof index page.

Have fun.