{"id":41090744,"url":"https://github.com/kapitanov/goscope.net","last_synced_at":"2026-02-01T01:24:09.481Z","repository":{"id":236834182,"uuid":"740677818","full_name":"kapitanov/goscope.net","owner":"kapitanov","description":"goscope.net - a small set of tools to expore state of Golang programs.","archived":false,"fork":false,"pushed_at":"2025-08-25T00:29:08.000Z","size":1826,"stargazers_count":0,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-25T01:38:27.485Z","etag":null,"topics":["go","pprof"],"latest_commit_sha":null,"homepage":"https://goscope.net","language":"Vue","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/kapitanov.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-01-08T20:52:05.000Z","updated_at":"2025-08-24T22:40:26.000Z","dependencies_parsed_at":"2025-06-04T20:16:16.474Z","dependency_job_id":"c08ce6b7-d6c6-47ce-8ac7-46e25ee782c8","html_url":"https://github.com/kapitanov/goscope.net","commit_stats":null,"previous_names":["kapitanov/goscope.net"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/kapitanov/goscope.net","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kapitanov%2Fgoscope.net","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kapitanov%2Fgoscope.net/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kapitanov%2Fgoscope.net/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kapitanov%2Fgoscope.net/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kapitanov","download_url":"https://codeload.github.com/kapitanov/goscope.net/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kapitanov%2Fgoscope.net/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28664656,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T14:01:31.714Z","status":"ssl_error","status_checked_at":"2026-01-22T13:59:23.143Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["go","pprof"],"created_at":"2026-01-22T14:34:48.051Z","updated_at":"2026-01-22T14:34:49.016Z","avatar_url":"https://github.com/kapitanov.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# goscope.net\n\n![GitHub Release](https://img.shields.io/github/v/release/kapitanov/goscope.net?style=flat\u0026label=release)\n![GitHub Actions Workflow Status - Release](https://img.shields.io/github/actions/workflow/status/kapitanov/goscope.net/release.yaml?style=flat\u0026label=release)\n![GitHub Actions Workflow Status - Staging](https://img.shields.io/github/actions/workflow/status/kapitanov/goscope.net/master.yaml?style=flat\u0026label=staging)\n![GitHub License](https://img.shields.io/github/license/kapitanov/goscope.net?style=flat)\n\nA small set of tools to expore state of Golang programs.\n\nThis application is a small frontend-only web application written with Vue and Nuxt.\n\n## Links\n\n- [**goscope.net**](https://goscope.net) (built from [GitHub releases](https://github.com/kapitanov/goscope.net/releases))\n- [**staging.goscope.net**](https://staging.goscope.net) (built from `master` branch)\n\n## Motivation\n\nGolang offers a lot of tools to explore the state of the running program.\nHowever, some of them are missing the user-friendly interface.\nSurprisingly, even powerful Golang IDEs (like VSCode or JetBrains Goland) are lacking these tools too.\n\nI've bumped into this issue for a number of times\nand decided to create a small web application that will help me to explore the state of the my Golang programs.\n\nHope this app would be useful for other Gophers as well.\n\n## Features\n\n**GoScope** has the following features:\n\n- Explore Goroutines stack traces dump.\n\n  ![](./public/images/goroutines-preview.png)\n\n  This feature lets you take a deep look at the output of `/debug/pprof/goroutine?debug=2` endpoint of your Golang application.\n\n- Explore Benchmark results.\n\n  ![](./public/images/benchmarkviz-preview.png)\n\n  This feature lets you take a pretty look at the output of your Go benchmarks.\n\n## How to build and run\n\n### Build\n\n```bash\nmake build\n```\n\nThe output (static files) will be in the `dist` directory.\n\n### Run tests\n\n```bash\nmake test\n```\n\n### Run linter\n\n```bash\nmake lint\n```\n\n### Run development server\n\n```bash\nmake dev\n```\n\n### Run preview server\n\n```bash\nmake preview\n```\n\n### Run autofomatter\n\n```bash\nmake format\n```\n\n### Deploy to Cloudflare\n\n```bash\nmake deploy\n```\n\nBefore running the deploy command, make sure to set the following environment variables:\n\n- `CLOUDFLARE_ACCOUNT_ID`\n- `CLOUDFLARE_PROJECT_NAME`\n- `CLOUDFLARE_API_TOKEN`\n\nIt's required to run `make build` before running `make deploy`.\n\nAlso, it's recommended to set the following environment variables:\n\n- `GOOGLE_ANALYTICS_TOKEN` - this variable should be set before running `make build` to include Google Analytics tracking code in the build.\n\n## Feature flags\n\nFeature flags are defines as environment variables.\n\n| Environment variable           | Feature                    |\n| ------------------------------ | -------------------------- |\n| `FEATURE_GOROUTINES`           | Enable \"Goroutines viewer\" |\n| `FEATURE_BENCHMARK_VISUALIZER` | Enable \"Benchmark viewer\"  |\n\nThe value of an environment variable is not relevant: any non-empty value will be treated as \"enabled\".\nIf no feature flags environment variables are set, the applciation will treat all flags as enabled.\n\n## Contributions\n\nCommunity contributions are welcome via [Pull Requests](https://github.com/kapitanov/goscope.net/pulls) on GitHub.\nCode submitted via Pull Requests should match the general style of the code in the repo.\n\n## License\n\nThe source code of this project is licensed under [the MIT license](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkapitanov%2Fgoscope.net","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkapitanov%2Fgoscope.net","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkapitanov%2Fgoscope.net/lists"}