63 Star 181 Fork 3

Gitee 极速下载 / hyperledger-fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
provider.go 1.67 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package prometheus
import (
kitmetrics "github.com/go-kit/kit/metrics"
"github.com/go-kit/kit/metrics/prometheus"
"github.com/hyperledger/fabric/common/metrics"
prom "github.com/prometheus/client_golang/prometheus"
)
type Provider struct{}
func (p *Provider) NewCounter(o metrics.CounterOpts) metrics.Counter {
return &Counter{
Counter: prometheus.NewCounterFrom(
prom.CounterOpts{
Namespace: o.Namespace,
Subsystem: o.Subsystem,
Name: o.Name,
Help: o.Help,
},
o.LabelNames,
),
}
}
func (p *Provider) NewGauge(o metrics.GaugeOpts) metrics.Gauge {
return &Gauge{
Gauge: prometheus.NewGaugeFrom(
prom.GaugeOpts{
Namespace: o.Namespace,
Subsystem: o.Subsystem,
Name: o.Name,
Help: o.Help,
},
o.LabelNames,
),
}
}
func (p *Provider) NewHistogram(o metrics.HistogramOpts) metrics.Histogram {
return &Histogram{
Histogram: prometheus.NewHistogramFrom(
prom.HistogramOpts{
Namespace: o.Namespace,
Subsystem: o.Subsystem,
Name: o.Name,
Help: o.Help,
Buckets: o.Buckets,
},
o.LabelNames,
),
}
}
type Counter struct{ kitmetrics.Counter }
func (c *Counter) With(labelValues ...string) metrics.Counter {
return &Counter{Counter: c.Counter.With(labelValues...)}
}
type Gauge struct{ kitmetrics.Gauge }
func (g *Gauge) With(labelValues ...string) metrics.Gauge {
return &Gauge{Gauge: g.Gauge.With(labelValues...)}
}
type Histogram struct{ kitmetrics.Histogram }
func (h *Histogram) With(labelValues ...string) metrics.Histogram {
return &Histogram{Histogram: h.Histogram.With(labelValues...)}
}
Go
1
https://gitee.com/mirrors/hyperledger-fabric.git
git@gitee.com:mirrors/hyperledger-fabric.git
mirrors
hyperledger-fabric
hyperledger-fabric
v2.1.1

搜索帮助

53164aa7 5694891 3bd8fe86 5694891