2022-10-10 18:38:55 +00:00
|
|
|
// Copyright © 2022 Vulcanize, Inc
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
// statsCmd represents the serve command
|
|
|
|
var statsCmd = &cobra.Command{
|
|
|
|
Use: "stats",
|
|
|
|
Short: "Report stats for cold levelDB",
|
|
|
|
Long: `Usage
|
|
|
|
|
|
|
|
./eth-statediff-service stats --config={path to toml config file}`,
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
subCommand = cmd.CalledAs()
|
|
|
|
logWithCommand = *logrus.WithField("SubCommand", subCommand)
|
|
|
|
stats()
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
rootCmd.AddCommand(statsCmd)
|
|
|
|
}
|
|
|
|
|
|
|
|
func stats() {
|
|
|
|
logWithCommand.Info("Running eth-statediff-service stats command")
|
|
|
|
|
|
|
|
reader, _, _ := instantiateLevelDBReader()
|
|
|
|
|
|
|
|
header, err := reader.GetLatestHeader()
|
|
|
|
if err != nil {
|
2022-10-10 18:44:46 +00:00
|
|
|
logWithCommand.Fatalf("Unable to determine latest header height and hash: %s", err.Error())
|
2022-10-10 18:38:55 +00:00
|
|
|
}
|
|
|
|
if header.Number == nil {
|
2022-10-10 18:44:46 +00:00
|
|
|
logWithCommand.Fatal("Latest header found in levelDB has a nil block height")
|
2022-10-10 18:38:55 +00:00
|
|
|
}
|
2022-10-10 18:44:46 +00:00
|
|
|
logWithCommand.Infof("Latest block found in the levelDB\r\nheight: %s, hash: %s", header.Number.String(), header.Hash().Hex())
|
2022-10-10 18:38:55 +00:00
|
|
|
}
|