42 lines
628 B
Go
42 lines
628 B
Go
package storiface
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/filecoin-project/sector-storage/sealtasks"
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
|
)
|
|
|
|
type WorkerInfo struct {
|
|
Hostname string
|
|
|
|
Resources WorkerResources
|
|
}
|
|
|
|
type WorkerResources struct {
|
|
MemPhysical uint64
|
|
MemSwap uint64
|
|
|
|
MemReserved uint64 // Used by system / other processes
|
|
|
|
CPUs uint64 // Logical cores
|
|
GPUs []string
|
|
}
|
|
|
|
type WorkerStats struct {
|
|
Info WorkerInfo
|
|
|
|
MemUsedMin uint64
|
|
MemUsedMax uint64
|
|
GpuUsed bool
|
|
CpuUse uint64
|
|
}
|
|
|
|
type WorkerJob struct {
|
|
ID uint64
|
|
Sector abi.SectorID
|
|
Task sealtasks.TaskType
|
|
|
|
Start time.Time
|
|
}
|