Remove statsd

We don't expose these metrics anywhere anyway and we want to move to
prometheus too (which will be done in the next commit)
This commit is contained in:
David McDonald
2020-06-30 11:08:11 +01:00
parent ee8270aa2c
commit 6958c0d677
4 changed files with 3 additions and 24 deletions

View File

@@ -2,10 +2,8 @@ from notifications_utils.clients.antivirus.antivirus_client import (
AntivirusClient,
)
from notifications_utils.clients.redis.redis_client import RedisClient
from notifications_utils.clients.statsd.statsd_client import StatsdClient
from notifications_utils.clients.zendesk.zendesk_client import ZendeskClient
antivirus_client = AntivirusClient()
statsd_client = StatsdClient()
zendesk_client = ZendeskClient()
redis_client = RedisClient()