edge-pprof

command module
v0.0.0-...-e525d52 Latest Latest
Warning

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

Go to latest
Published: Jun 4, 2019 License: Apache-2.0 Imports: 3 Imported by: 0

README

Edge PProf

在内部环境,对 Go 服务进行聚合性能分析(PProf)的一个边缘应用

image

环境要求

配置

若要修改默认配置,则到 conf/app.ini 文件进行修改。该配置文件通过 go-bindata 嵌入到二进制文件中

安装

$ go get -u github.com/EDDYCJY/edge-pprof

$ go-bindata -pkg=bindata -o pkg/bindata/bindata.go ./conf/app.ini

$ go run main.go
运行信息
$ go run main.go
[GIN-debug] [WARNING] Running in "debug" mode. Switch to "release" mode in production.
 - using env:	export GIN_MODE=release
 - using code:	gin.SetMode(gin.ReleaseMode)

[GIN-debug] GET    /resource/*filepath       --> github.com/gin-gonic/gin.(*RouterGroup).createStaticHandler.func1 (3 handlers)
[GIN-debug] HEAD   /resource/*filepath       --> github.com/gin-gonic/gin.(*RouterGroup).createStaticHandler.func1 (3 handlers)
[GIN-debug] GET    /api/v1/debug/pprof/profile --> github.com/EDDYCJY/edge-pprof/server.(*Profile).Handle-fm (3 handlers)
[GIN-debug] GET    /api/v1/debug/pprof/heap  --> github.com/EDDYCJY/edge-pprof/server.(*Heap).Handle-fm (3 handlers)
[GIN-debug] GET    /api/v1/debug/pprof/block --> github.com/EDDYCJY/edge-pprof/server.(*Block).Handle-fm (3 handlers)
[GIN-debug] GET    /api/v1/debug/pprof/mutex --> github.com/EDDYCJY/edge-pprof/server.(*Mutex).Handle-fm (3 handlers)
[GIN-debug] Listening and serving HTTP on 0.0.0.0:8080

例子

  1. debug/pprof/profile:$HOST/api/v1/debug/pprof/profile?service_name=$NAME&service_port=$PORT
{
    "code": 1,
    "msg": "ok",
    "data": {
        "image_url": "$HOST/resource/profile/$NAME.1549087498.svg",
        "pzpb_url": "$HOST/resource/profile/$NAME.1549087498.pb.gz"
    }
}
返回格式
.pb.gz

可供下载到本地后利用 go tool pprof 进行更详细的性能分析

.svg

image

  1. debug/pprof/heap:$HOST/api/v1/debug/pprof/heap?service_name=$NAME&service_port=$PORT
{
    "code": 1,
    "msg": "ok",
    "data": {
        "image_url": "$HOST/resource/heap/$NAME.1549087819.svg",
        "pzpb_url": "$HOST/resource/heap/$NAME.1549087819.pb.gz"
    }
}
  1. debug/pprof/block: $HOST/api/v1/debug/pprof/block?service_name=$NAME&service_port=$PORT

  2. debug/pprof/mutex: $HOST/api/v1/debug/pprof/mutex?service_name=$NAME&service_port=$PORT

TODO

  • Logging
  • JWT
  • AliyunOss 支持
  • Makefile

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
pkg
app
e

Jump to

Keyboard shortcuts

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