report: add support for YAQL expressions in bug patterns #485
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bug patterns have historically only supported executing regular expressions. This is ok for log files and simple strings, but when we have access to more structured data (i.e., JSON or YAML) in bug reports, having the ability to find elements in such files is very useful.
In particular, this would be beneficial for Subiquity, where we have a large number of bug reports that we currently de-duplicate manually. We want to rely more on automation for such tasks.
In addition to regular expressions, we now support YAQL expressions [1] in bug patterns. They can be specified using the following syntax:
The format attribute can optionally be specified and will control the parser used. Supported values are
"yaml"
(the default) and"json"
.The YAML parser can parse JSON but is slightly slower, thus specifying
format="json"
is recommended for JSON files.Patterns having
<yaql>
tags will be considered non-matches if theyaql
python module is not installed.https://yaql.readthedocs.io/en/latest/getting_started.html