mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 21:14:01 +03:00
Fix statsd address
It used the wrong variable.
This commit is contained in:
@@ -87,7 +87,7 @@ func newStatsStatsd() (Interface, error) {
|
|||||||
options := []statsd.Option{
|
options := []statsd.Option{
|
||||||
statsd.Prefix(config.C.StatsNamespace),
|
statsd.Prefix(config.C.StatsNamespace),
|
||||||
statsd.Network(config.C.StatsdNetwork),
|
statsd.Network(config.C.StatsdNetwork),
|
||||||
statsd.Address(config.C.StatsBind.String()),
|
statsd.Address(config.C.StatsdAddr.String()),
|
||||||
statsd.TagsFormat(config.C.StatsdTagsFormat),
|
statsd.TagsFormat(config.C.StatsdTagsFormat),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user