Merge pull request #103 from K900/patch-1

Fix statsd address
This commit is contained in:
Sergey Arkhipov
2019-11-11 21:19:42 +03:00
committed by GitHub
+1 -1
View File
@@ -87,7 +87,7 @@ func newStatsStatsd() (Interface, error) {
options := []statsd.Option{
statsd.Prefix(config.C.StatsNamespace),
statsd.Network(config.C.StatsdNetwork),
statsd.Address(config.C.StatsBind.String()),
statsd.Address(config.C.StatsdAddr.String()),
statsd.TagsFormat(config.C.StatsdTagsFormat),
}