Merge pull request #2739 from alphagov/statsd-prefix

Remove unused statsd_prefix variable
This commit is contained in:
David McDonald
2020-03-05 13:43:47 +00:00
committed by GitHub
3 changed files with 0 additions and 5 deletions

View File

@@ -80,9 +80,6 @@ class Config(object):
# Firetext API Key
FIRETEXT_API_KEY = os.getenv("FIRETEXT_API_KEY")
# Hosted graphite statsd prefix
STATSD_PREFIX = os.getenv('STATSD_PREFIX')
# Prefix to identify queues in SQS
NOTIFICATION_QUEUE_PREFIX = os.getenv('NOTIFICATION_QUEUE_PREFIX')

View File

@@ -9,7 +9,6 @@ worker_connections = 256
errorlog = "/home/vcap/logs/gunicorn_error.log"
bind = "0.0.0.0:{}".format(os.getenv("PORT"))
statsd_host = "{}:8125".format(os.getenv("STATSD_HOST"))
statsd_prefix = os.getenv("STATSD_PREFIX")
gunicorn.SERVER_SOFTWARE = 'None'

View File

@@ -90,7 +90,6 @@ applications:
AWS_SECRET_ACCESS_KEY: '{{ AWS_SECRET_ACCESS_KEY }}'
STATSD_HOST: "notify-statsd-exporter-{{ environment }}.apps.internal"
STATSD_PREFIX: ""
ZENDESK_API_KEY: '{{ ZENDESK_API_KEY }}'