Allow remote statsd to be specified by environment variable

This commit is contained in:
Christopher Hoskin
2018-07-06 13:57:52 +01:00
parent 6b31a74abb
commit 06e8450694
+1 -1
View File
@@ -1,5 +1,5 @@
StatsD = require('lynx')
statsd = new StatsD('localhost', 8125, {on_error:->})
statsd = new StatsD(process.env["STATSD_HOST"] or "localhost", 8125, {on_error:->})
name = "unknown"
hostname = require('os').hostname()