Registry /
messaging / michaelklishin-rabbit-hole-v2
Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
rabbithole
✓ github.com/michaelklishin/rabbit-hole/v2
Creates a client and fetches the RabbitMQ overview.
package main
import (
"fmt"
rabbithole "github.com/michaelklishin/rabbit-hole/v2"
)
func main() {
client, err := rabbithole.NewClient("http://localhost:15672", "guest", "guest")
if err != nil {
panic(err)
}
overview, err := client.Overview()
if err != nil {
panic(err)
}
fmt.Printf("RabbitMQ version: %s\n", overview.RabbitMQVersion)
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
2.16.0latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.