frostfs-node/pkg/local_object_storage/shard/info.go

27 lines
567 B
Go
Raw Normal View History

package shard
import (
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobstor"
meta "github.com/nspcc-dev/neofs-node/pkg/local_object_storage/metabase"
)
// Info groups the information about Shard.
type Info struct {
// Identifier of the shard.
ID *ID
// Information about the metabase.
MetaBaseInfo meta.Info
// Information about the BLOB storage.
BlobStorInfo blobstor.Info
// Weight parameters of the shard.
WeightValues WeightValues
}
// DumpInfo returns information about the Shard.
func (s *Shard) DumpInfo() Info {
return s.info
}