roumon alternatives and similar packages
Based on the "Go Tools" category.
Alternatively, view roumon alternatives based on common mentions on social networks and blogs.
-
The Go Play Space
Advanced Go Playground frontend written in Go, with syntax highlighting, turtle graphics mode, and more -
Sonic
Sonic is a Go library for network and I/O programming that provides developers with a consistent asynchronous model, with a focus on achieving the lowest possible latency and jitter in Go. -
typex
[TOOL/CLI] - Filter and examine Go type structures, interfaces and their transitive dependencies and relationships. Export structural types as TypeScript value object or bare type representations. -
Viney's go-cache
A flexible multi-layer Go caching library to deal with in-memory and shared cache by adopting Cache-Aside pattern. -
gothanks
GoThanks automatically stars Go's official repository and your go.mod github dependencies, providing a simple way to say thanks to the maintainers of the modules you use and the contributors of Go itself. -
go-lock
go-lock is a lock library implementing read-write mutex and read-write trylock without starvation -
goroutines
It is an efficient, flexible, and lightweight goroutine pool. It provides an easy way to deal with concurrent tasks with limited resource. -
PDF to Image Converter Using Golang
This project will help you to convert PDF file to IMAGE using golang. -
go-james
DISCONTINUED. James is your butler and helps you to create, build, debug, test and run your Go projects -
docs
Automatically generate RESTful API documentation for GO projects - aligned with Open API Specification standard -
rescached
DISCONTINUED. [mirror] Resolver (DNS) cache daemon. See https://sr.ht/~shulhan/rescached [Moved to: https://github.com/shuLhan/rescached] -
Goenv
DISCONTINUED. ๐บ Manage Your Applications Go Environment. [Moved to: https://github.com/Clivern/Goenv] -
modver
Compare two versions of a Go module to check the version-number change required (major, minor, or patchlevel), according to semver rules. -
channelize
A websocket framework to manage outbound streams. Allowing to have multiple channels per connection that includes public and private channels. -
IP2Location.io Command Line
IP2Location.io command line to query IP geolocation data from IP2Location.io API
CodeRabbit: AI Code Reviews for Developers
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of roumon or a related project?
README
roumon
A go*routine **mon*itor to keep track of active routines from within your favorite shell.
[screenshot](doc/Screenshot.png)
Features
- Track live state of all active goroutines
- Terminal user interface written with termui ๐ค
- Simple to integrate pprof server for live monitoring
- Dynamic history of goroutine count
- Full-text filtering
- Overview of routine states
Installation
go install github.com/becheran/roumon@latest
Or download the pre-compiled binaries from the releases page.
Usage
Before starting roumon, the go app which shall be monitored needs to be prepared to export pprof infos via http.
pprof
The program which shall be monitored needs to run a pprof server.
Import pprof into you program:
import _ "net/http/pprof"
Run a webserver which will listen on a specific port:
go func() {
log.Println(http.ListenAndServe("localhost:6060", nil))
}()
Start your program and check that the pprof
site is available in you web-browser: http://localhost:6060/debug/pprof
roumon
Start roumon in from your command line interface. Use optional arguments if needed.
For example roumon -debug=logfile -host=192.168.10.1 -port=8081
will start the routine monitor for the pprof profiles exposed to 192.168.10.1:8081
and write a debug logfile to ./logfile
.
Run roumon with -h
or --help
to see all commandline argument options:
Usage of roumon:
-debug string
Path to debug file
-host string
The pprof server IP or hostname (default "localhost")
-port int
The pprof server port (default 6060)
From within the Terminal User Interface (TUI) hit F1
for help F10
or ctrl-c
to stop the application.
Contributing
Pull requests and issues [are welcome](./CONTRIBUTING.md)!
*Note that all licence references and agreements mentioned in the roumon README section above
are relevant to that project's source code only.