Receiving Web Hooks

Hello all,

Has anyone started or envision Sensu being able to receive webhooks? I have several technologies that want to send webhooks to Sensu for event notification.

Thanks

We do this at work, but the implementation is going to be environment-specific depending on what you are integrating with.

You basically need a small http server to do a conversion between the incoming hook data and the sensu event data you want to produce. You end up using the client socket / http endpoint:

https://sensuapp.org/docs/0.27/reference/clients.html#client-socket-input

And “transform” the incoming hook data and interpret what you want to be for the outgoing “handler” config, check code (0,1,2,3) etc.

Be careful about security of course.

···

On Mon, Feb 6, 2017 at 9:12 AM, Sean Simon codepattern@gmail.com wrote:

Hello all,

Has anyone started or envision Sensu being able to receive webhooks? I have several technologies that want to send webhooks to Sensu for event notification.

Thanks