This file is indexed.

/usr/share/gocode/src/github.com/raintank/met/dogstatsd/timer.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
21
22
23
package dogstatsd

import "time"
import "github.com/raintank/met"

// note that due the preseeding in init, you shouldn't rely on the count and count_ps summaries
// rather, consider maintaining a separate counter
// see https://github.com/raintank/grafana/issues/133

type Timer struct {
	key     string
	backend Backend
}

func (b Backend) NewTimer(key string, val time.Duration) met.Timer {
	t := Timer{key, b}
	t.Value(val)
	return t
}

func (t Timer) Value(val time.Duration) {
	t.backend.client.TimeInMilliseconds(t.key, val.Seconds()*1000, []string{}, 1)
}