Popularity
7.5
Stable
Activity
0.0
Stable
1,084
35
73
Programming language: Go
License: BSD 2-clause "Simplified" License
Tags:
Code Analysis
gcvis alternatives and similar packages
Based on the "Code Analysis" category.
Alternatively, view gcvis alternatives based on common mentions on social networks and blogs.
-
Go Metalinter
DISCONTINUED. Metalinter is a tool to automatically apply all static analysis tool and report their output in normalized form. -
revive
🔥 ~6x faster, stricter, configurable, extensible, and beautiful drop-in replacement for golint -
go-cleanarch
Clean architecture validator for go, like a The Dependency Rule and interaction between packages in your Go projects. -
goreturns
A gofmt/goimports-like tool for Go programmers that fills in Go return statements with zero values to match the func return types -
go-mod-outdated
Find outdated dependencies of your Go projects. go-mod-outdated provides a table view of the go list -u -m -json all command which lists all dependencies of a Go project and their available minor and patch updates. It also provides a way to filter indirect dependencies and dependencies without updates. -
usestdlibvars
A linter that detect the possibility to use variables/constants from the Go standard library. -
staticcheck
staticcheck is go vet on steroids, applying a ton of static analysis checks you might be used to from tools like ReSharper for C#. -
Golint online
Lints online Go source files on GitHub, Bitbucket and Google Project Hosting using the golint package. -
blanket
blanket is a tool that helps you catch functions which don't have direct unit tests in your Go packages.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of gcvis or a related project?
Popular Comparisons
README
This project is no longer maintained
I'm sorry but I do not have the bandwidth to maintain this tool. Please do not send issues or PRs. Thank you.
gcvis
Visualise Go program gctrace data in real time
Note: GC timing graphs are only supported for go 1.6
Usage
Running it directly:
env GOMAXPROCS=4 gcvis godoc -index -http=:6060
Adding the gctrace
flag yourself:
GODEBUG=gctrace=1 godoc -index -http=:6060 2>&1 | gcvis
Or from a log file:
GODEBUG=gctrace=1 godoc -index -http=:6060 2> stderr.log
cat stderr.log | gcvis
Starting the server without automatically opening a browser:
gcvis -o=false godoc -index -http=:6060