sentry wxwork
1.2.0
Complemento para Sentry que permite enviar notificaciones e iniciar sesión SSO a través de WeChat Work.
NOTA: Sentry 20.x eliminó la compatibilidad con complementos heredados, por lo que este complemento solo funciona para Sentry 9.x-10.x.
sentry-wxwork
en requirements.txt
pip install sentry-wxwork
En la página Integraciones (heredadas), busque WeChat Work
, habilítelo y configúrelo.
Agregue las siguientes configuraciones a su sentry.conf.py
:
WXWORK_CORP_ID = ''
WXWORK_SECRET = ''
WXWORK_AGENT_ID = ''
o, si prefiere configurarlo mediante variables de entorno:
if 'WXWORK_CORP_ID' in os . environ :
WXWORK_CORP_ID = env ( 'WXWORK_CORP_ID' )
WXWORK_SECRET = env ( 'WXWORK_SECRET' )
WXWORK_AGENT_ID = env ( 'WXWORK_AGENT_ID' )