add websocket health information

This commit is contained in:
chris meyers
2020-02-05 09:03:04 -05:00
committed by Ryan Petrello
parent ea29f4b91f
commit 403e9bbfb5
3 changed files with 235 additions and 33 deletions

View File

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