mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-31 12:08:55 +00:00
9 lines
150 B
Go
9 lines
150 B
Go
package metrics
|
|
|
|
import tally "github.com/uber-go/tally/v4"
|
|
|
|
func InitCounter(scope tally.Scope, name string) {
|
|
s := scope.Counter(name)
|
|
s.Inc(0)
|
|
}
|