{"id":13696743,"url":"https://github.com/sevennt/echo-pprof","last_synced_at":"2025-04-09T22:18:20.805Z","repository":{"id":39616910,"uuid":"89446153","full_name":"sevennt/echo-pprof","owner":"sevennt","description":"echo-pprof is a wrapper for golang web framework echo to use net/http/pprof easily.","archived":false,"fork":false,"pushed_at":"2023-11-15T16:54:36.000Z","size":19,"stargazers_count":82,"open_issues_count":3,"forks_count":58,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-09T22:18:16.682Z","etag":null,"topics":["echo","golang","pprof","profile","profiling"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sevennt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-04-26T06:29:45.000Z","updated_at":"2024-10-10T00:42:15.000Z","dependencies_parsed_at":"2024-06-18T13:55:53.235Z","dependency_job_id":"72a29b56-6758-43af-be02-fb8656fdc33f","html_url":"https://github.com/sevennt/echo-pprof","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sevennt%2Fecho-pprof","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sevennt%2Fecho-pprof/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sevennt%2Fecho-pprof/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sevennt%2Fecho-pprof/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sevennt","download_url":"https://codeload.github.com/sevennt/echo-pprof/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248119286,"owners_count":21050755,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["echo","golang","pprof","profile","profiling"],"created_at":"2024-08-02T18:00:46.148Z","updated_at":"2025-04-09T22:18:20.781Z","avatar_url":"https://github.com/sevennt.png","language":"Go","readme":"echo-pprof\n========\n\nA wrapper for [Echo web framework](https://github.com/labstack/echo) to use `net/http/pprof` easily.\n\n## Install\n\n```sh\ngo get -u github.com/sevenNt/echo-pprof\n```\n\n## Usage\n\n```go\npackage main\n\nimport (\n\t\"github.com/labstack/echo/v4\"\n\t\"github.com/sevenNt/echo-pprof\"\n)\n\nfunc main() {\n\te := echo.New()\n\n\te.GET(\"/ping\", func(c echo.Context) error {\n\t\treturn c.String(200, \"pong\")\n\t})\n\n\t// automatically add routers for net/http/pprof\n\t// e.g. /debug/pprof, /debug/pprof/heap, etc.\n\techopprof.Wrap(e)\n\n\t// echopprof also plays well with *echo.Group\n\t// prefix := \"/debug/pprof\"\n\t// group := e.Group(prefix)\n\t// echopprof.WrapGroup(prefix, group)\n\n\te.Start(\":8080\")\n}\n```\n\nStart 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.\n\nHave fun.\n","funding_links":[],"categories":["3. Application"],"sub_categories":["Golang"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsevennt%2Fecho-pprof","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsevennt%2Fecho-pprof","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsevennt%2Fecho-pprof/lists"}