Browse Source

Fix statsd address

It used the wrong variable.
tags/1.0^2
K900 6 years ago
parent
commit
e465817011
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      stats/stats_statsd.go

+ 1
- 1
stats/stats_statsd.go View File

87
 	options := []statsd.Option{
87
 	options := []statsd.Option{
88
 		statsd.Prefix(config.C.StatsNamespace),
88
 		statsd.Prefix(config.C.StatsNamespace),
89
 		statsd.Network(config.C.StatsdNetwork),
89
 		statsd.Network(config.C.StatsdNetwork),
90
-		statsd.Address(config.C.StatsBind.String()),
90
+		statsd.Address(config.C.StatsdAddr.String()),
91
 		statsd.TagsFormat(config.C.StatsdTagsFormat),
91
 		statsd.TagsFormat(config.C.StatsdTagsFormat),
92
 	}
92
 	}
93
 
93
 

Loading…
Cancel
Save