From 8fbaf60f39b63075de8d9e169229cf71b35d1752 Mon Sep 17 00:00:00 2001 From: Cryptophobia Date: Sat, 7 Nov 2020 20:10:25 -0500 Subject: [PATCH] chore(influxdb): change influxdb service name Signed-off-by: Cryptophobia --- rootfs/fluentd/deis-output/lib/fluent/mixin/deis.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rootfs/fluentd/deis-output/lib/fluent/mixin/deis.rb b/rootfs/fluentd/deis-output/lib/fluent/mixin/deis.rb index 3a279f3..c8f68d5 100644 --- a/rootfs/fluentd/deis-output/lib/fluent/mixin/deis.rb +++ b/rootfs/fluentd/deis-output/lib/fluent/mixin/deis.rb @@ -7,8 +7,8 @@ module Fluent module Mixin module Deis LOGGER_URL = "http://#{ENV['DEIS_LOGGER_SERVICE_HOST']}:#{ENV['DEIS_LOGGER_SERVICE_PORT_HTTP']}/logs" - INFLUX_HOST = "#{ENV['DEIS_MONITOR_INFLUX_API_SERVICE_HOST']}" - INFLUX_PORT = "#{ENV['DEIS_MONITOR_INFLUX_API_SERVICE_PORT_TRANSPORT']}" + INFLUX_HOST = "#{ENV['DEIS_MONITOR_INFLUX_SERVICE_HOST']}" + INFLUX_PORT = "#{ENV['DEIS_MONITOR_INFLUX_SERVICE_PORT_TRANSPORT']}" INFLUX_DATABASE = ENV['INFLUX_DATABASE'] || "kubernetes" NSQ_URLs = "#{ENV['DEIS_NSQD_ADDRS']}".split(",")