2020-12-19 22:08:34 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2021-07-14 06:11:23 +00:00
|
|
|
corebig "math/big"
|
2020-12-19 22:08:34 +00:00
|
|
|
"os"
|
2022-01-14 12:17:45 +00:00
|
|
|
"strconv"
|
2020-12-19 22:08:34 +00:00
|
|
|
|
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2021-07-14 06:11:23 +00:00
|
|
|
filbig "github.com/filecoin-project/go-state-types/big"
|
2022-01-13 16:21:13 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-12-19 22:08:34 +00:00
|
|
|
lcli "github.com/filecoin-project/lotus/cli"
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// How many epochs back to look at for dealstats
|
|
|
|
var defaultEpochLookback = abi.ChainEpoch(10)
|
|
|
|
|
|
|
|
type networkTotalsOutput struct {
|
|
|
|
Epoch int64 `json:"epoch"`
|
|
|
|
Endpoint string `json:"endpoint"`
|
|
|
|
Payload networkTotals `json:"payload"`
|
|
|
|
}
|
|
|
|
|
2022-01-13 16:21:13 +00:00
|
|
|
type providerMeta struct {
|
|
|
|
nonidentifiable bool
|
|
|
|
}
|
|
|
|
|
2022-01-14 12:17:45 +00:00
|
|
|
// force formatting as decimal to aid human readers
|
|
|
|
type humanFloat float64
|
|
|
|
|
|
|
|
func (f humanFloat) MarshalJSON() ([]byte, error) {
|
|
|
|
// 'f' uses decimal digits without exponents.
|
|
|
|
// The bit size of 32 ensures we don't use too many decimal places.
|
|
|
|
return []byte(strconv.FormatFloat(float64(f), 'f', -1, 32)), nil
|
|
|
|
}
|
|
|
|
|
2022-01-13 16:21:13 +00:00
|
|
|
type Totals struct {
|
2022-01-14 12:17:45 +00:00
|
|
|
TotalDeals int `json:"total_num_deals"`
|
|
|
|
TotalBytes int64 `json:"total_stored_data_size"`
|
|
|
|
PrivateTotalDeals int `json:"private_total_num_deals"`
|
|
|
|
PrivateTotalBytes int64 `json:"private_total_stored_data_size"`
|
|
|
|
CapacityCarryingData humanFloat `json:"capacity_fraction_carrying_data"`
|
2022-01-13 16:21:13 +00:00
|
|
|
}
|
|
|
|
|
2020-12-19 22:08:34 +00:00
|
|
|
type networkTotals struct {
|
2022-01-13 16:21:13 +00:00
|
|
|
QaNetworkPower filbig.Int `json:"total_qa_power"`
|
|
|
|
RawNetworkPower filbig.Int `json:"total_raw_capacity"`
|
|
|
|
UniqueCids int `json:"total_unique_cids"`
|
|
|
|
UniqueBytes int64 `json:"total_unique_data_size"`
|
|
|
|
UniqueClients int `json:"total_unique_clients"`
|
|
|
|
UniqueProviders int `json:"total_unique_providers"`
|
|
|
|
UniquePrivateProviders int `json:"total_unique_private_providers"`
|
|
|
|
Totals
|
|
|
|
FilPlus Totals `json:"filecoin_plus_subset"`
|
|
|
|
|
|
|
|
pieces map[cid.Cid]struct{}
|
|
|
|
clients map[address.Address]struct{}
|
|
|
|
providers map[address.Address]providerMeta
|
2020-12-19 22:08:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var storageStatsCmd = &cli.Command{
|
|
|
|
Name: "storage-stats",
|
|
|
|
Usage: "Translates current lotus state into a json summary suitable for driving https://storage.filecoin.io/",
|
|
|
|
Flags: []cli.Flag{
|
2022-01-13 16:21:13 +00:00
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "tipset",
|
|
|
|
Usage: "Comma separated array of cids, or @height",
|
2020-12-19 22:08:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
Action: func(cctx *cli.Context) error {
|
|
|
|
ctx := lcli.ReqContext(cctx)
|
|
|
|
|
|
|
|
api, apiCloser, err := lcli.GetFullNodeAPI(cctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer apiCloser()
|
|
|
|
|
2022-01-13 16:21:13 +00:00
|
|
|
var ts *types.TipSet
|
|
|
|
if cctx.String("tipset") == "" {
|
|
|
|
ts, err = api.ChainHead(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ts, err = api.ChainGetTipSetByHeight(ctx, ts.Height()-defaultEpochLookback, ts.Key())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-12-19 22:08:34 +00:00
|
|
|
} else {
|
2022-01-13 16:21:13 +00:00
|
|
|
ts, err = lcli.ParseTipSetRef(ctx, api, cctx.String("tipset"))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-12-19 22:08:34 +00:00
|
|
|
}
|
|
|
|
|
2022-01-13 16:21:13 +00:00
|
|
|
power, err := api.StateMinerPower(ctx, address.Address{}, ts.Key())
|
2021-07-14 06:11:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-12-19 22:08:34 +00:00
|
|
|
netTotals := networkTotals{
|
2021-07-14 06:32:07 +00:00
|
|
|
QaNetworkPower: power.TotalPower.QualityAdjPower,
|
|
|
|
RawNetworkPower: power.TotalPower.RawBytePower,
|
2022-01-13 16:21:13 +00:00
|
|
|
pieces: make(map[cid.Cid]struct{}),
|
|
|
|
clients: make(map[address.Address]struct{}),
|
|
|
|
providers: make(map[address.Address]providerMeta),
|
2020-12-19 22:08:34 +00:00
|
|
|
}
|
|
|
|
|
2022-01-13 16:21:13 +00:00
|
|
|
deals, err := api.StateMarketDeals(ctx, ts.Key())
|
2020-12-19 22:08:34 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, dealInfo := range deals {
|
|
|
|
|
|
|
|
// Only count deals that have properly started, not past/future ones
|
|
|
|
// https://github.com/filecoin-project/specs-actors/blob/v0.9.9/actors/builtin/market/deal.go#L81-L85
|
|
|
|
// Bail on 0 as well in case SectorStartEpoch is uninitialized due to some bug
|
2022-01-13 19:03:33 +00:00
|
|
|
//
|
|
|
|
// Additionally if the SlashEpoch is set this means the underlying sector is
|
|
|
|
// terminated for whatever reason ( not just slashed ), and the deal record
|
|
|
|
// will soon be removed from the state entirely
|
2020-12-19 22:08:34 +00:00
|
|
|
if dealInfo.State.SectorStartEpoch <= 0 ||
|
2022-01-13 19:03:33 +00:00
|
|
|
dealInfo.State.SectorStartEpoch > ts.Height() ||
|
|
|
|
dealInfo.State.SlashEpoch > -1 {
|
2020-12-19 22:08:34 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2022-01-13 16:21:13 +00:00
|
|
|
netTotals.clients[dealInfo.Proposal.Client] = struct{}{}
|
|
|
|
|
|
|
|
if _, seen := netTotals.providers[dealInfo.Proposal.Provider]; !seen {
|
|
|
|
pm := providerMeta{}
|
|
|
|
|
|
|
|
mi, err := api.StateMinerInfo(ctx, dealInfo.Proposal.Provider, ts.Key())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if mi.PeerId == nil || *mi.PeerId == "" {
|
|
|
|
log.Infof("private provider %s", dealInfo.Proposal.Provider)
|
|
|
|
pm.nonidentifiable = true
|
|
|
|
netTotals.UniquePrivateProviders++
|
|
|
|
}
|
|
|
|
|
|
|
|
netTotals.providers[dealInfo.Proposal.Provider] = pm
|
|
|
|
netTotals.UniqueProviders++
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, seen := netTotals.pieces[dealInfo.Proposal.PieceCID]; !seen {
|
|
|
|
netTotals.pieces[dealInfo.Proposal.PieceCID] = struct{}{}
|
|
|
|
netTotals.UniqueBytes += int64(dealInfo.Proposal.PieceSize)
|
|
|
|
netTotals.UniqueCids++
|
|
|
|
}
|
|
|
|
|
2020-12-19 22:08:34 +00:00
|
|
|
netTotals.TotalBytes += int64(dealInfo.Proposal.PieceSize)
|
|
|
|
netTotals.TotalDeals++
|
2022-01-13 16:21:13 +00:00
|
|
|
if netTotals.providers[dealInfo.Proposal.Provider].nonidentifiable {
|
|
|
|
netTotals.PrivateTotalBytes += int64(dealInfo.Proposal.PieceSize)
|
|
|
|
netTotals.PrivateTotalDeals++
|
|
|
|
}
|
2020-12-19 22:08:34 +00:00
|
|
|
|
|
|
|
if dealInfo.Proposal.VerifiedDeal {
|
2022-01-13 16:21:13 +00:00
|
|
|
netTotals.FilPlus.TotalBytes += int64(dealInfo.Proposal.PieceSize)
|
|
|
|
netTotals.FilPlus.TotalDeals++
|
|
|
|
if netTotals.providers[dealInfo.Proposal.Provider].nonidentifiable {
|
|
|
|
netTotals.FilPlus.PrivateTotalBytes += int64(dealInfo.Proposal.PieceSize)
|
|
|
|
netTotals.FilPlus.PrivateTotalDeals++
|
|
|
|
}
|
2020-12-19 22:08:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-13 16:21:13 +00:00
|
|
|
netTotals.UniqueClients = len(netTotals.clients)
|
2022-01-14 12:17:45 +00:00
|
|
|
|
|
|
|
ccd, _ := new(corebig.Rat).SetFrac(
|
2021-07-14 06:11:23 +00:00
|
|
|
corebig.NewInt(netTotals.TotalBytes),
|
2021-07-14 06:32:07 +00:00
|
|
|
netTotals.RawNetworkPower.Int,
|
2021-07-14 06:11:23 +00:00
|
|
|
).Float64()
|
2022-01-14 12:17:45 +00:00
|
|
|
netTotals.CapacityCarryingData = humanFloat(ccd)
|
|
|
|
|
|
|
|
ccdfp, _ := new(corebig.Rat).SetFrac(
|
2022-01-13 16:21:13 +00:00
|
|
|
corebig.NewInt(netTotals.FilPlus.TotalBytes),
|
|
|
|
netTotals.RawNetworkPower.Int,
|
|
|
|
).Float64()
|
2022-01-14 12:17:45 +00:00
|
|
|
netTotals.FilPlus.CapacityCarryingData = humanFloat(ccdfp)
|
2021-07-14 06:11:23 +00:00
|
|
|
|
2020-12-19 22:08:34 +00:00
|
|
|
return json.NewEncoder(os.Stdout).Encode(
|
|
|
|
networkTotalsOutput{
|
2022-01-13 16:21:13 +00:00
|
|
|
Epoch: int64(ts.Height()),
|
2020-12-19 22:08:34 +00:00
|
|
|
Endpoint: "NETWORK_WIDE_TOTALS",
|
|
|
|
Payload: netTotals,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
},
|
|
|
|
}
|