monitor

package
v0.1.102 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 21, 2026 License: AGPL-3.0 Imports: 21 Imported by: 0

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,
	PreRunE: func(cmd *cobra.Command, args []string) (err error) {
		rpcURL, err = flag.GetRPCURL(cmd)
		if err != nil {
			return err
		}

		verbosityFlag := cmd.Flag("verbosity")
		if verbosityFlag != nil && !verbosityFlag.Changed {
			util.SetLogLevel(util.Silent)
		}

		prettyFlag := cmd.Flag("pretty-logs")
		if prettyFlag != nil && prettyFlag.Value.String() == "true" {
			if err = util.SetLogMode(util.Console); err != nil {
				return err
			}
		}

		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)

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL