echopprof

package module
v0.0.0-...-88ca655 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 28, 2016 License: MIT Imports: 12 Imported by: 0

README

echopprof

A wrapper for golang web framework echo to use net/http/pprof easily.

install

First install echopprof to your GOPATH using go get:

go get github.com/echo-contrib/echopprof

Usage

package main

import (
    "github.com/labstack/echo"
    "github.com/labstack/echo/engine/standard"
    "github.com/echo-contrib/echopprof"
)

func hello() echo.HandlerFunc {
	return func(c echo.Context) error {
		return c.String(200, "Hello, World!\n")
	}
}

func main() {
    e := echo.New()
    e.Get("/", hello())

    // automatically add routers for net/http/pprof
    // e.g. /debug/pprof, /debug/pprof/heap, etc.
    echopprof.Wrapper(e)
    e.Run(standard.New(":8080"))
}

Start this server, and now visit http://127.0.0.1:8080/debug/pprof/ and you'll see what you want.

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Wrapper = Wrap

Functions

func NewFastHTTPEchoAdaptor

func NewFastHTTPEchoAdaptor(h http.Handler) echo.HandlerFunc

NewFastHTTPEchoAdaptor is responsible for adapting echo requests through fasthttp interfaces to net/http requests.

Based on valyala/fasthttp implementation. Available here: https://github.com/valyala/fasthttp/blob/master/fasthttpadaptor/adaptor.go

func Wrap

func Wrap(e *echo.Echo)

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL