Is it possible to obtain rule failures on a resource, during "sensor" or "decorator" stage ? Specifically rule failure ID ?
Maybe it can be obtained on some other stage of batch side, so that it would be possible to generate some additional metrics.
|
feedback
|
|
You can do so using the Context object that is given in Decorator#decorate(Resource resource, DecoratorContext context) method. You can do context#getViolations() to get the violations on the resource. Note that you should add the following annotation on your decorator class:
This will make sure that your decorator gets executed after the violation tracking, so that you have all the violations. | |||
|
feedback
|