2021-10-03 07:34:21 +05:30
|
|
|
package asynqmon_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/hibiken/asynq"
|
|
|
|
"github.com/hibiken/asynqmon"
|
|
|
|
)
|
|
|
|
|
2021-10-10 06:33:38 -07:00
|
|
|
func ExampleHTTPHandler() {
|
2021-10-04 20:48:00 +05:30
|
|
|
h := asynqmon.New(asynqmon.Options{
|
2021-10-10 06:33:38 -07:00
|
|
|
RootPath: "/monitoring",
|
2021-10-03 07:34:21 +05:30
|
|
|
RedisConnOpt: asynq.RedisClientOpt{Addr: ":6379"},
|
|
|
|
})
|
|
|
|
|
2021-10-10 06:33:38 -07:00
|
|
|
http.Handle(h.RootPath(), h)
|
|
|
|
log.Fatal(http.ListenAndServe(":8000", nil)) // visit localhost:8000/monitoring to see asynqmon homepage
|
2021-10-03 07:34:21 +05:30
|
|
|
}
|