WebHook broker that accepts notifications from multiple platforms and performs simple actions in response
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

sensu.py 224B

123456789
  1. from .service import Service
  2. class Sensu(Service):
  3. def __init__(self):
  4. super().__init__("sensu")
  5. def accept_hook(self, identifier, request):
  6. yield {"type": "sensu", **request.get_json(force=True)}