2019-06-20 12:52:32 +01:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package console
|
|
|
|
|
2020-07-16 15:18:02 +01:00
|
|
|
// DiskSpaceInfo stores all info about storagenode disk space usage.
|
2019-06-20 12:52:32 +01:00
|
|
|
type DiskSpaceInfo struct {
|
2019-10-04 16:17:28 +01:00
|
|
|
Used int64 `json:"used"`
|
|
|
|
Available int64 `json:"available"`
|
2020-05-02 18:52:29 +01:00
|
|
|
Trash int64 `json:"trash"`
|
2020-12-08 14:55:16 +00:00
|
|
|
Overused int64 `json:"overused"`
|
2019-06-20 12:52:32 +01:00
|
|
|
}
|