Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var MonitorCmd = &cobra.Command{ Use: "monitor", Short: "Monitor blocks using a JSON-RPC endpoint.", Long: usage, Args: cobra.NoArgs, SilenceUsage: true, PersistentPreRunE: func(cmd *cobra.Command, args []string) error { verbosityFlag := cmd.Flag("verbosity") if verbosityFlag != nil && !verbosityFlag.Changed { util.SetLogLevel(int(util.Silent)) } prettyFlag := cmd.Flag("pretty-logs") if prettyFlag != nil && prettyFlag.Value.String() == "true" { return util.SetLogMode(util.Console) } return nil }, PreRunE: func(cmd *cobra.Command, args []string) error { return checkFlags() }, RunE: func(cmd *cobra.Command, args []string) error { return monitor(cmd.Context()) }, }
Functions ¶
This section is empty.
Types ¶
type SafeBatchSize ¶
type SafeBatchSize struct {
// contains filtered or unexported fields
}
func (*SafeBatchSize) Auto ¶
func (s *SafeBatchSize) Auto() bool
func (*SafeBatchSize) Get ¶
func (s *SafeBatchSize) Get() int
func (*SafeBatchSize) Set ¶
func (s *SafeBatchSize) Set(value int, auto bool)
Click to show internal directories.
Click to hide internal directories.