This file is indexed.

/usr/share/gocode/src/github.com/paulbellamy/ratecounter/doc.go is in golang-github-paulbellamy-ratecounter-dev 0.2.0-4.

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
24
/*
Package ratecounter provides a thread-safe rate-counter, for tracking counts
in an interval

Useful for implementing counters and stats of 'requests-per-second' (for example).

  // We're recording marks-per-1second
  counter := ratecounter.NewRateCounter(1 * time.Second)

  // Record an event happening
  counter.Mark()

  // get the current requests-per-second
  counter.Rate()

To record an average over a longer period, you can:

  // Record requests-per-minute
  counter := ratecounter.NewRateCounter(60 * time.Second)

  // Calculate the average requests-per-second for the last minute
  counter.Rate() / 60
*/
package ratecounter