diff --git a/tools/asynq/cmd/cron.go b/tools/asynq/cmd/cron.go index a7cffd1..376d1cd 100644 --- a/tools/asynq/cmd/cron.go +++ b/tools/asynq/cmd/cron.go @@ -11,7 +11,7 @@ import ( "sort" "time" - "github.com/hibiken/asynq" + "github.com/hibiken/asynq/inspeq" "github.com/spf13/cobra" ) @@ -108,7 +108,7 @@ func cronHistory(cmd *cobra.Command, args []string) { fmt.Printf("Entry: %s\n\n", entryID) events, err := inspector.ListSchedulerEnqueueEvents( - entryID, asynq.PageSize(pageSize), asynq.Page(pageNum)) + entryID, inspeq.PageSize(pageSize), inspeq.Page(pageNum)) if err != nil { fmt.Printf("error: %v\n", err) continue diff --git a/tools/asynq/cmd/queue.go b/tools/asynq/cmd/queue.go index 66f71af..648e1f8 100644 --- a/tools/asynq/cmd/queue.go +++ b/tools/asynq/cmd/queue.go @@ -10,7 +10,7 @@ import ( "os" "github.com/fatih/color" - "github.com/hibiken/asynq" + "github.com/hibiken/asynq/inspeq" "github.com/hibiken/asynq/internal/rdb" "github.com/spf13/cobra" ) @@ -82,7 +82,7 @@ func queueList(cmd *cobra.Command, args []string) { type queueInfo struct { name string keyslot int64 - nodes []asynq.ClusterNode + nodes []inspeq.ClusterNode } inspector := createInspector() queues, err := inspector.Queues() @@ -141,7 +141,7 @@ func queueInspect(cmd *cobra.Command, args []string) { } } -func printQueueStats(s *asynq.QueueStats) { +func printQueueStats(s *inspeq.QueueStats) { bold := color.New(color.Bold) bold.Println("Queue Info") fmt.Printf("Name: %s\n", s.Queue) @@ -191,7 +191,7 @@ func queueHistory(cmd *cobra.Command, args []string) { } } -func printDailyStats(stats []*asynq.DailyStats) { +func printDailyStats(stats []*inspeq.DailyStats) { printTable( []string{"date (UTC)", "processed", "failed", "error rate"}, func(w io.Writer, tmpl string) { diff --git a/tools/asynq/cmd/root.go b/tools/asynq/cmd/root.go index ddd9262..6e39c62 100644 --- a/tools/asynq/cmd/root.go +++ b/tools/asynq/cmd/root.go @@ -14,6 +14,7 @@ import ( "github.com/go-redis/redis/v7" "github.com/hibiken/asynq" + "github.com/hibiken/asynq/inspeq" "github.com/hibiken/asynq/internal/base" "github.com/hibiken/asynq/internal/rdb" "github.com/spf13/cobra" @@ -135,7 +136,7 @@ func createRDB() *rdb.RDB { } // createRDB creates a Inspector instance using flag values and returns it. -func createInspector() *asynq.Inspector { +func createInspector() *inspeq.Inspector { var connOpt asynq.RedisConnOpt if useRedisCluster { addrs := strings.Split(viper.GetString("cluster_addrs"), ",") @@ -152,7 +153,7 @@ func createInspector() *asynq.Inspector { TLSConfig: getTLSConfig(), } } - return asynq.NewInspector(connOpt) + return inspeq.New(connOpt) } func getTLSConfig() *tls.Config { diff --git a/tools/asynq/cmd/task.go b/tools/asynq/cmd/task.go index 074dade..9ff4d95 100644 --- a/tools/asynq/cmd/task.go +++ b/tools/asynq/cmd/task.go @@ -10,7 +10,7 @@ import ( "os" "time" - "github.com/hibiken/asynq" + "github.com/hibiken/asynq/inspeq" "github.com/spf13/cobra" ) @@ -183,7 +183,7 @@ func taskList(cmd *cobra.Command, args []string) { func listActiveTasks(qname string, pageNum, pageSize int) { i := createInspector() - tasks, err := i.ListActiveTasks(qname, asynq.PageSize(pageSize), asynq.Page(pageNum)) + tasks, err := i.ListActiveTasks(qname, inspeq.PageSize(pageSize), inspeq.Page(pageNum)) if err != nil { fmt.Println(err) os.Exit(1) @@ -204,7 +204,7 @@ func listActiveTasks(qname string, pageNum, pageSize int) { func listPendingTasks(qname string, pageNum, pageSize int) { i := createInspector() - tasks, err := i.ListPendingTasks(qname, asynq.PageSize(pageSize), asynq.Page(pageNum)) + tasks, err := i.ListPendingTasks(qname, inspeq.PageSize(pageSize), inspeq.Page(pageNum)) if err != nil { fmt.Println(err) os.Exit(1) @@ -225,7 +225,7 @@ func listPendingTasks(qname string, pageNum, pageSize int) { func listScheduledTasks(qname string, pageNum, pageSize int) { i := createInspector() - tasks, err := i.ListScheduledTasks(qname, asynq.PageSize(pageSize), asynq.Page(pageNum)) + tasks, err := i.ListScheduledTasks(qname, inspeq.PageSize(pageSize), inspeq.Page(pageNum)) if err != nil { fmt.Println(err) os.Exit(1) @@ -248,7 +248,7 @@ func listScheduledTasks(qname string, pageNum, pageSize int) { func listRetryTasks(qname string, pageNum, pageSize int) { i := createInspector() - tasks, err := i.ListRetryTasks(qname, asynq.PageSize(pageSize), asynq.Page(pageNum)) + tasks, err := i.ListRetryTasks(qname, inspeq.PageSize(pageSize), inspeq.Page(pageNum)) if err != nil { fmt.Println(err) os.Exit(1) @@ -267,7 +267,7 @@ func listRetryTasks(qname string, pageNum, pageSize int) { } else { nextRetry = "right now" } - fmt.Fprintf(w, tmpl, t.Key(), t.Type, t.Payload, nextRetry, t.ErrorMsg, t.Retried, t.MaxRetry) + fmt.Fprintf(w, tmpl, t.Key(), t.Type, t.Payload, nextRetry, t.LastError, t.Retried, t.MaxRetry) } }, ) @@ -275,7 +275,7 @@ func listRetryTasks(qname string, pageNum, pageSize int) { func listArchivedTasks(qname string, pageNum, pageSize int) { i := createInspector() - tasks, err := i.ListArchivedTasks(qname, asynq.PageSize(pageSize), asynq.Page(pageNum)) + tasks, err := i.ListArchivedTasks(qname, inspeq.PageSize(pageSize), inspeq.Page(pageNum)) if err != nil { fmt.Println(err) os.Exit(1) @@ -288,7 +288,7 @@ func listArchivedTasks(qname string, pageNum, pageSize int) { []string{"Key", "Type", "Payload", "Last Failed", "Last Error"}, func(w io.Writer, tmpl string) { for _, t := range tasks { - fmt.Fprintf(w, tmpl, t.Key(), t.Type, t.Payload, t.LastFailedAt, t.ErrorMsg) + fmt.Fprintf(w, tmpl, t.Key(), t.Type, t.Payload, t.LastFailedAt, t.LastError) } }) }