(lbls labels.Labels, value float64)
| 63 | } |
| 64 | |
| 65 | func (g *gauge) SetForTargetInfo(lbls labels.Labels, value float64) { |
| 66 | g.updateSeries(lbls, value, set, false) |
| 67 | } |
| 68 | |
| 69 | func (g *gauge) updateSeries(lbls labels.Labels, value float64, operation string, updateIfAlreadyExist bool) { |
| 70 | hash := lbls.Hash() |
nothing calls this directly
no test coverage detected