From 1ccd38f181a2d0b874082df90fe290e29c400dba Mon Sep 17 00:00:00 2001 From: eldadfux Date: Wed, 7 Aug 2019 10:56:08 +0300 Subject: [PATCH] Updated default telegraf hostname --- app/init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/init.php b/app/init.php index 219be1cdc2..7c17b308aa 100644 --- a/app/init.php +++ b/app/init.php @@ -98,7 +98,7 @@ $register->set('influxdb', function() use ($request) { // Register DB connection return $client; }); $register->set('statsd', function() use ($request) { // Register DB connection - $host = $request->getServer('_APP_STATSD_HOST', 'telegraf-statsd'); + $host = $request->getServer('_APP_STATSD_HOST', 'telegraf'); $port = $request->getServer('_APP_STATSD_PORT', 8125); $connection = new \Domnikl\Statsd\Connection\UdpSocket($host, $port);