Dmitrii Stepanov
2ad433dbcb
All checks were successful
DCO action / DCO (pull_request) Successful in 4m7s
Vulncheck / Vulncheck (pull_request) Successful in 4m53s
Build / Build Components (1.21) (pull_request) Successful in 5m46s
Build / Build Components (1.20) (pull_request) Successful in 6m21s
Tests and linters / Staticcheck (pull_request) Successful in 7m45s
Tests and linters / Lint (pull_request) Successful in 8m44s
Tests and linters / Tests (1.21) (pull_request) Successful in 13m1s
Tests and linters / Tests (1.20) (pull_request) Successful in 15m42s
Tests and linters / Tests with -race (pull_request) Successful in 16m10s
Unused. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
38 lines
1 KiB
Go
38 lines
1 KiB
Go
package shard
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/blobstor"
|
|
meta "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/metabase"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/pilorama"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/shard/mode"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/writecache"
|
|
)
|
|
|
|
// Info groups the information about Shard.
|
|
type Info struct {
|
|
// Identifier of the shard.
|
|
ID *ID
|
|
|
|
// Shard mode.
|
|
Mode mode.Mode
|
|
|
|
// Information about the metabase.
|
|
MetaBaseInfo meta.Info
|
|
|
|
// Information about the BLOB storage.
|
|
BlobStorInfo blobstor.Info
|
|
|
|
// Information about the Write Cache.
|
|
WriteCacheInfo writecache.Info
|
|
|
|
// ErrorCount contains amount of errors occurred in shard operations.
|
|
ErrorCount uint32
|
|
|
|
// PiloramaInfo contains information about trees stored on this shard.
|
|
PiloramaInfo pilorama.Info
|
|
}
|
|
|
|
// DumpInfo returns information about the Shard.
|
|
func (s *Shard) DumpInfo() Info {
|
|
return s.info
|
|
}
|