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
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