Register integer variable. Don't check for initialization.
(name string)
| 83 | |
| 84 | // Register integer variable. Don't check for initialization. |
| 85 | func statsRegisterInt(name string) { |
| 86 | expvar.Publish(name, new(expvar.Int)) |
| 87 | } |
| 88 | |
| 89 | // Register histogram variable. `bounds` specifies histogram buckets/bins |
| 90 | // (see comment next to the `histogram` struct definition). |
no outgoing calls
no test coverage detected
searching dependent graphs…