Merge pull request #325 from prometheus/beorn7/doc

Remove remaining references to MetricVec from doc comments
This commit is contained in:
Björn Rabenstein 2017-07-12 18:53:59 +02:00 committed by GitHub
commit 95b6848b5c
2 changed files with 1 additions and 5 deletions

View File

@ -70,9 +70,6 @@ func (c *counter) Add(v float64) {
// if you want to count the same thing partitioned by various dimensions
// (e.g. number of HTTP requests, partitioned by response code and
// method). Create instances with NewCounterVec.
//
// CounterVec embeds MetricVec. See there for a full list of methods with
// detailed documentation.
type CounterVec struct {
*metricVec
}

View File

@ -35,8 +35,7 @@ type metricVec struct {
hashAddByte func(h uint64, b byte) uint64
}
// newMetricVec returns an initialized MetricVec. The concrete value is
// returned for embedding into another struct.
// newMetricVec returns an initialized metricVec.
func newMetricVec(desc *Desc, newMetric func(lvs ...string) Metric) *metricVec {
return &metricVec{
children: map[uint64][]metricWithLabelValues{},