You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if a logstash config contains a boolean expression like if [foo] > 2 and [foo] is of the wrong type or nil it will raise exceptions that can be confusing. We should do the following:
Print out a friendlier error message like: "Your expression [foo] > 2 failed, probably because a field was null. The exact error wash ‘undefined method `>' for true:TrueClass".
Currently, if a logstash config contains a boolean expression like
if [foo] > 2and[foo]is of the wrong type or nil it will raise exceptions that can be confusing. We should do the following:begin; endblock, and re-raise the exception as a wrappedLogStash::Pipeline::ConditionalError. This can be caught be the code in Add pipeline.continue_on_error setting to allow logstash to rescue arbitrary… #5562