2023-06-07 15:04:23 +00:00
|
|
|
package metrics
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2024-06-24 14:12:26 +00:00
|
|
|
metrics_impl "git.frostfs.info/TrueCloudLab/frostfs-node/internal/metrics"
|
2023-06-07 15:04:23 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/blobstor"
|
|
|
|
)
|
|
|
|
|
|
|
|
type blobstoreMetrics struct {
|
|
|
|
shardID string
|
|
|
|
m metrics_impl.BlobstoreMetrics
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewBlobstoreMetrics(m metrics_impl.BlobstoreMetrics) blobstor.Metrics {
|
|
|
|
return &blobstoreMetrics{
|
|
|
|
shardID: undefined,
|
|
|
|
m: m,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *blobstoreMetrics) SetParentID(parentID string) {
|
|
|
|
m.shardID = parentID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *blobstoreMetrics) SetMode(readOnly bool) {
|
|
|
|
m.m.SetMode(m.shardID, readOnly)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *blobstoreMetrics) Close() {
|
|
|
|
m.m.Close(m.shardID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *blobstoreMetrics) Delete(d time.Duration, success, withStorageID bool) {
|
|
|
|
m.m.MethodDuration(m.shardID, "Delete", d, success, metrics_impl.NullBool{Bool: withStorageID, Valid: true})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *blobstoreMetrics) Exists(d time.Duration, success, withStorageID bool) {
|
|
|
|
m.m.MethodDuration(m.shardID, "Exists", d, success, metrics_impl.NullBool{Bool: withStorageID, Valid: true})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *blobstoreMetrics) GetRange(d time.Duration, size int, success, withStorageID bool) {
|
|
|
|
m.m.MethodDuration(m.shardID, "GetRange", d, success, metrics_impl.NullBool{Bool: withStorageID, Valid: true})
|
|
|
|
if success {
|
|
|
|
m.m.AddGet(m.shardID, size)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *blobstoreMetrics) Get(d time.Duration, size int, success, withStorageID bool) {
|
|
|
|
m.m.MethodDuration(m.shardID, "Get", d, success, metrics_impl.NullBool{Bool: withStorageID, Valid: true})
|
|
|
|
if success {
|
|
|
|
m.m.AddGet(m.shardID, size)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *blobstoreMetrics) Iterate(d time.Duration, success bool) {
|
|
|
|
m.m.MethodDuration(m.shardID, "Iterate", d, success, metrics_impl.NullBool{})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *blobstoreMetrics) Put(d time.Duration, size int, success bool) {
|
|
|
|
m.m.MethodDuration(m.shardID, "Put", d, success, metrics_impl.NullBool{})
|
|
|
|
if success {
|
|
|
|
m.m.AddPut(m.shardID, size)
|
|
|
|
}
|
|
|
|
}
|
2024-03-12 14:36:26 +00:00
|
|
|
|
|
|
|
func (m *blobstoreMetrics) ObjectsCount(d time.Duration, success bool) {
|
|
|
|
m.m.MethodDuration(m.shardID, "ObjectsCount", d, success, metrics_impl.NullBool{})
|
|
|
|
}
|