sensu / sensu-plugin-sdk

A framework for creating Sensu plugins
MIT License
7 stars 8 forks source link

support handlers that need to pass through mutated json #78

Open jspaleta opened 2 years ago

jspaleta commented 2 years ago

In order to support mutated json passed into a handler, we need to disable eventRead and/or eventValidation.

Currently the SDK doesn't allow for this in the Handler concept.

This PR adds additional Handler functions to explicitly disable these plugin framework properties before handler Execute() is called.

Example handler use-case

building 'generic' webhook handlers to send json to arbitrary webhook url. The payload needed by the receiving webhook would be mutated in the Sensu pipeline and will not longer be expected to be recognizable as a Sensu Event.

https://github.com/jspaleta/sensu-http-handler This repo uses commits from this PR to disable event read so that arbitrary byte string on stdin can be passed to an external http endpoint