remove health info

* Sending health about websockets over websockets is not a great idea.
* I tried sending health data via prometheus and encountered problems
that will need PR's to prometheus_client library to solve. Circle back
to this later.
This commit is contained in:
chris meyers
2020-02-14 08:59:52 -05:00
committed by Ryan Petrello
parent 45ce6d794e
commit c06b6306ab
3 changed files with 3 additions and 160 deletions

View File

@@ -7,7 +7,6 @@ from . import consumers
websocket_urlpatterns = [
url(r'websocket/$', consumers.EventConsumer),
url(r'websocket/broadcast/$', consumers.BroadcastConsumer),
url(r'websocket/health/$', consumers.HealthConsumer),
]
application = ProtocolTypeRouter({