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.

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

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:

@DependsUpon(DecoratorBarriers.END_OF_VIOLATION_TRACKING)

This will make sure that your decorator gets executed after the violation tracking, so that you have all the violations.

link|improve this answer
Thank you for your help. – Xeperis Feb 15 at 12:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.