mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-26 05:27:19 +00:00
e6c056e666
* rename from Datadir to DataDir (functions and public vars) * rename dataDir to datadir (local variables)
25 lines
521 B
Go
25 lines
521 B
Go
package commands
|
|
|
|
import (
|
|
"github.com/ledgerwatch/erigon/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)
|
|
},
|
|
}
|