erigon-pulse/cmd/state/commands/index_stats.go

25 lines
525 B
Go

package commands
import (
"github.com/ledgerwatch/turbo-geth/cmd/state/stats"
"github.com/spf13/cobra"
)
func init() {
withDatadir(indexStatsCmd)
withStatsfile(indexStatsCmd)
withIndexBucket(indexStatsCmd)
rootCmd.AddCommand(indexStatsCmd)
}
var indexStatsCmd = &cobra.Command{
Use: "indexStats",
Short: "Stats about index chunks",
RunE: func(cmd *cobra.Command, args []string) error {
if statsfile == "stateless.csv" {
statsfile = ""
}
return stats.IndexStats(chaindata, indexBucket, statsfile)
},
}