diff --git a/conf/glances.conf b/conf/glances.conf index c7389357..013b8067 100644 --- a/conf/glances.conf +++ b/conf/glances.conf @@ -422,7 +422,7 @@ countmax=20 [amp_nginx] # Use the NGinx AMP # Nginx status page should be enable (https://easyengine.io/tutorials/nginx/status-page/) -enable=true +enable=false regex=\/usr\/sbin\/nginx refresh=60 one_line=false diff --git a/glances/exports/glances_statsd.py b/glances/exports/glances_statsd.py index a7254692..db7628a0 100644 --- a/glances/exports/glances_statsd.py +++ b/glances/exports/glances_statsd.py @@ -61,6 +61,9 @@ class Export(GlancesExport): """Init the connection to the Statsd server.""" if not self.export_enable: return None + logger.info( + "Stats will be exported to StatsD server: {}:{}".format(self.host, + self.port)) return StatsClient(self.host, int(self.port), prefix=prefix)