| 88 | } |
| 89 | |
| 90 | type gauge struct { |
| 91 | // valBits contains the bits of the represented float64 value. It has |
| 92 | // to go first in the struct to guarantee alignment for atomic |
| 93 | // operations. http://golang.org/pkg/sync/atomic/#pkg-note-BUG |
| 94 | valBits uint64 |
| 95 | |
| 96 | selfCollector |
| 97 | |
| 98 | desc *Desc |
| 99 | labelPairs []*dto.LabelPair |
| 100 | } |
| 101 | |
| 102 | func (g *gauge) Desc() *Desc { |
| 103 | return g.desc |
nothing calls this directly
no outgoing calls
no test coverage detected