Dmitrii Stepanov
1b17258c04
All checks were successful
DCO action / DCO (pull_request) Successful in 1m22s
Vulncheck / Vulncheck (pull_request) Successful in 3m11s
Build / Build Components (1.21) (pull_request) Successful in 3m56s
Build / Build Components (1.20) (pull_request) Successful in 3m59s
Tests and linters / Staticcheck (pull_request) Successful in 5m31s
Tests and linters / gopls check (pull_request) Successful in 5m26s
Tests and linters / Lint (pull_request) Successful in 6m13s
Tests and linters / Tests (1.20) (pull_request) Successful in 8m54s
Tests and linters / Tests (1.21) (pull_request) Successful in 9m13s
Tests and linters / Tests with -race (pull_request) Successful in 9m30s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
69 lines
2 KiB
Go
69 lines
2 KiB
Go
package engine
|
|
|
|
import (
|
|
"time"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/shard/mode"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/metrics"
|
|
)
|
|
|
|
type MetricRegister interface {
|
|
AddMethodDuration(method string, d time.Duration)
|
|
|
|
SetObjectCounter(shardID, objectType string, v uint64)
|
|
AddToObjectCounter(shardID, objectType string, delta int)
|
|
|
|
SetMode(shardID string, mode mode.Mode)
|
|
|
|
AddToContainerSize(cnrID string, size int64)
|
|
DeleteContainerSize(cnrID string)
|
|
DeleteContainerCount(cnrID string)
|
|
AddToPayloadCounter(shardID string, size int64)
|
|
IncErrorCounter(shardID string)
|
|
ClearErrorCounter(shardID string)
|
|
DeleteShardMetrics(shardID string)
|
|
|
|
SetContainerObjectCounter(shardID, contID, objectType string, v uint64)
|
|
IncContainerObjectCounter(shardID, contID, objectType string)
|
|
SubContainerObjectCounter(shardID, contID, objectType string, v uint64)
|
|
|
|
IncRefillObjectsCount(shardID, path string, size int, success bool)
|
|
SetRefillPercent(shardID, path string, percent uint32)
|
|
SetRefillStatus(shardID, path, status string)
|
|
|
|
WriteCache() metrics.WriteCacheMetrics
|
|
GC() metrics.GCMetrics
|
|
}
|
|
|
|
func elapsed(method string, addFunc func(method string, d time.Duration)) func() {
|
|
t := time.Now()
|
|
|
|
return func() {
|
|
addFunc(method, time.Since(t))
|
|
}
|
|
}
|
|
|
|
type gcMetrics struct {
|
|
storage metrics.GCMetrics
|
|
shardID string
|
|
}
|
|
|
|
func (m *gcMetrics) SetShardID(id string) {
|
|
m.shardID = id
|
|
}
|
|
|
|
func (m *gcMetrics) AddRunDuration(d time.Duration, success bool) {
|
|
m.storage.AddRunDuration(m.shardID, d, success)
|
|
}
|
|
|
|
func (m *gcMetrics) AddDeletedCount(deleted, failed uint64) {
|
|
m.storage.AddDeletedCount(m.shardID, deleted, failed)
|
|
}
|
|
|
|
func (m *gcMetrics) AddExpiredObjectCollectionDuration(d time.Duration, success bool, objectType string) {
|
|
m.storage.AddExpiredObjectCollectionDuration(m.shardID, d, success, objectType)
|
|
}
|
|
|
|
func (m *gcMetrics) AddInhumedObjectCount(count uint64, objectType string) {
|
|
m.storage.AddInhumedObjectCount(m.shardID, count, objectType)
|
|
}
|