Dmitrii Stepanov
d8ecc69d00
This is required to add shard ID as metric label. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
29 lines
952 B
Go
29 lines
952 B
Go
package fstree
|
|
|
|
import "time"
|
|
|
|
type Metrics interface {
|
|
SetParentID(parentID string)
|
|
|
|
SetMode(readOnly bool)
|
|
Close()
|
|
|
|
Iterate(d time.Duration, success bool)
|
|
Delete(d time.Duration, success bool)
|
|
Exists(d time.Duration, success bool)
|
|
Put(d time.Duration, size int, success bool)
|
|
Get(d time.Duration, size int, success bool)
|
|
GetRange(d time.Duration, size int, success bool)
|
|
}
|
|
|
|
type noopMetrics struct{}
|
|
|
|
func (m *noopMetrics) SetParentID(string) {}
|
|
func (m *noopMetrics) SetMode(bool) {}
|
|
func (m *noopMetrics) Close() {}
|
|
func (m *noopMetrics) Iterate(time.Duration, bool) {}
|
|
func (m *noopMetrics) Delete(time.Duration, bool) {}
|
|
func (m *noopMetrics) Exists(time.Duration, bool) {}
|
|
func (m *noopMetrics) Put(time.Duration, int, bool) {}
|
|
func (m *noopMetrics) Get(time.Duration, int, bool) {}
|
|
func (m *noopMetrics) GetRange(time.Duration, int, bool) {}
|