3 Star 6 Fork 7

Gitee 极速下载 / Hyperledger fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
metrics_histogram.go 3.30 KB
一键复制 编辑 原始数据 按行查看 历史
Jason Yellick 提交于 2018-11-19 12:49 . FAB-9568 Add metrics to Broadcast
// Code generated by counterfeiter. DO NOT EDIT.
package mock
import (
"sync"
"github.com/hyperledger/fabric/common/metrics"
)
type MetricsHistogram struct {
WithStub func(labelValues ...string) metrics.Histogram
withMutex sync.RWMutex
withArgsForCall []struct {
labelValues []string
}
withReturns struct {
result1 metrics.Histogram
}
withReturnsOnCall map[int]struct {
result1 metrics.Histogram
}
ObserveStub func(value float64)
observeMutex sync.RWMutex
observeArgsForCall []struct {
value float64
}
invocations map[string][][]interface{}
invocationsMutex sync.RWMutex
}
func (fake *MetricsHistogram) With(labelValues ...string) metrics.Histogram {
fake.withMutex.Lock()
ret, specificReturn := fake.withReturnsOnCall[len(fake.withArgsForCall)]
fake.withArgsForCall = append(fake.withArgsForCall, struct {
labelValues []string
}{labelValues})
fake.recordInvocation("With", []interface{}{labelValues})
fake.withMutex.Unlock()
if fake.WithStub != nil {
return fake.WithStub(labelValues...)
}
if specificReturn {
return ret.result1
}
return fake.withReturns.result1
}
func (fake *MetricsHistogram) WithCallCount() int {
fake.withMutex.RLock()
defer fake.withMutex.RUnlock()
return len(fake.withArgsForCall)
}
func (fake *MetricsHistogram) WithArgsForCall(i int) []string {
fake.withMutex.RLock()
defer fake.withMutex.RUnlock()
return fake.withArgsForCall[i].labelValues
}
func (fake *MetricsHistogram) WithReturns(result1 metrics.Histogram) {
fake.WithStub = nil
fake.withReturns = struct {
result1 metrics.Histogram
}{result1}
}
func (fake *MetricsHistogram) WithReturnsOnCall(i int, result1 metrics.Histogram) {
fake.WithStub = nil
if fake.withReturnsOnCall == nil {
fake.withReturnsOnCall = make(map[int]struct {
result1 metrics.Histogram
})
}
fake.withReturnsOnCall[i] = struct {
result1 metrics.Histogram
}{result1}
}
func (fake *MetricsHistogram) Observe(value float64) {
fake.observeMutex.Lock()
fake.observeArgsForCall = append(fake.observeArgsForCall, struct {
value float64
}{value})
fake.recordInvocation("Observe", []interface{}{value})
fake.observeMutex.Unlock()
if fake.ObserveStub != nil {
fake.ObserveStub(value)
}
}
func (fake *MetricsHistogram) ObserveCallCount() int {
fake.observeMutex.RLock()
defer fake.observeMutex.RUnlock()
return len(fake.observeArgsForCall)
}
func (fake *MetricsHistogram) ObserveArgsForCall(i int) float64 {
fake.observeMutex.RLock()
defer fake.observeMutex.RUnlock()
return fake.observeArgsForCall[i].value
}
func (fake *MetricsHistogram) Invocations() map[string][][]interface{} {
fake.invocationsMutex.RLock()
defer fake.invocationsMutex.RUnlock()
fake.withMutex.RLock()
defer fake.withMutex.RUnlock()
fake.observeMutex.RLock()
defer fake.observeMutex.RUnlock()
copiedInvocations := map[string][][]interface{}{}
for key, value := range fake.invocations {
copiedInvocations[key] = value
}
return copiedInvocations
}
func (fake *MetricsHistogram) recordInvocation(key string, args []interface{}) {
fake.invocationsMutex.Lock()
defer fake.invocationsMutex.Unlock()
if fake.invocations == nil {
fake.invocations = map[string][][]interface{}{}
}
if fake.invocations[key] == nil {
fake.invocations[key] = [][]interface{}{}
}
fake.invocations[key] = append(fake.invocations[key], args)
}
1
https://gitee.com/mirrors/fabric.git
git@gitee.com:mirrors/fabric.git
mirrors
fabric
Hyperledger fabric
v1.4.12

搜索帮助

53164aa7 5694891 3bd8fe86 5694891