storj/satellite/accounting/common.go

35 lines
953 B
Go
Raw Normal View History

2019-01-24 20:15:10 +00:00
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package accounting
2019-01-17 18:34:13 +00:00
import (
"time"
"storj.io/common/storj"
2019-01-17 18:34:13 +00:00
)
// Constants for accounting_raw, accounting_rollup, and accounting_timestamps.
const (
// LastAtRestTally represents the accounting timestamp for the at-rest data calculation
LastAtRestTally = "LastAtRestTally"
// LastBandwidthTally represents the accounting timestamp for the bandwidth allocation query
LastBandwidthTally = "LastBandwidthTally"
// LastRollup represents the accounting timestamp for rollup calculations
LastRollup = "LastRollup"
)
2019-01-17 18:34:13 +00:00
// CSVRow represents data from QueryPaymentInfo without exposing dbx.
2019-01-17 18:34:13 +00:00
type CSVRow struct {
NodeID storj.NodeID
NodeCreationDate time.Time
AtRestTotal float64
GetRepairTotal int64
PutRepairTotal int64
GetAuditTotal int64
PutTotal int64
GetTotal int64
Wallet string
Disqualified *time.Time
2019-01-17 18:34:13 +00:00
}