| 317 | } |
| 318 | |
| 319 | type Counter struct { |
| 320 | total *atomic.Int64 |
| 321 | rate *atomic.Float64 |
| 322 | |
| 323 | resetTime time.Time |
| 324 | } |
| 325 | |
| 326 | // NewCounter returns a new Counter stats object. |
| 327 | // If a Counter stats object with the same name already exists it is returned. |
nothing calls this directly
no outgoing calls
no test coverage detected