mirror of
https://github.com/hibiken/asynq.git
synced 2025-04-20 15:50:20 +08:00
46 lines
1.0 KiB
Go
46 lines
1.0 KiB
Go
// Copyright 2022 Kentaro Hibino. All rights reserved.
|
|
// Use of this source code is governed by a MIT license
|
|
// that can be found in the LICENSE file.
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/MakeNowJust/heredoc/v2"
|
|
"github.com/hibiken/asynq/tools/asynq/cmd/dash"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
flagPollInterval = 8 * time.Second
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(dashCmd)
|
|
dashCmd.Flags().DurationVar(&flagPollInterval, "refresh", 8*time.Second, "Interval between data refresh (default: 8s, min allowed: 1s)")
|
|
}
|
|
|
|
var dashCmd = &cobra.Command{
|
|
Use: "dash",
|
|
Short: "View dashboard",
|
|
Long: heredoc.Doc(`
|
|
Display interactive dashboard.`),
|
|
Args: cobra.NoArgs,
|
|
Example: heredoc.Doc(`
|
|
$ asynq dash
|
|
$ asynq dash --refresh=3s`),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
if flagPollInterval < 1*time.Second {
|
|
fmt.Println("error: --refresh cannot be less than 1s")
|
|
os.Exit(1)
|
|
}
|
|
dash.Run(dash.Options{
|
|
PollInterval: flagPollInterval,
|
|
RedisConnOpt: getRedisConnOpt(),
|
|
})
|
|
},
|
|
}
|