Ai
1 Star 0 Fork 0

13683679291/fabric

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
provider.go 1.67 KB
Copy Edit Raw Blame History
Matthew Sykes authored 2018-11-03 00:59 +08:00 . Add disabled and prometheus metric providers
/*
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...)}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mmcro/fabric.git
git@gitee.com:mmcro/fabric.git
mmcro
fabric
fabric
v2.1.1

Search