This file is indexed.

/usr/share/gocode/src/github.com/raintank/met/dogstatsd/meter.go is in golang-github-raintank-met-dev 0.0~git20161103.0.05a94bb-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
// it's commonly used for non-timer cases where we want these summaries, that's
// what this is for.
package dogstatsd

import "github.com/raintank/met"

type Meter struct {
	key     string
	backend Backend
}

func (b Backend) NewMeter(key string, val int64) met.Meter {
	m := Meter{key, b}
	m.Value(val)
	return m
}

func (m Meter) Value(val int64) {
	m.backend.client.Histogram(m.key, float64(val), []string{}, 1)
}