Dan Kortschak
Dan Kortschak
This was fixed in #29014 which was included in v8. The fix was to add a [fingerprint processor](https://github.com/elastic/beats/blob/3e928b702b660d5cf31e8f3090c57f2feb541338/x-pack/filebeat/module/threatintel/anomalithreatstream/ingest/pipeline.yml#L10-L15) using the `event.dataset` and event id field from the original event. Making...
The linter errors may be related to #33649.
@cmacknz I can see value in having CEL processing available elsewhere and this is initially an experiment to see how well it will work as an analogue of the httpjson...
E2E failure is unrelated.
So not from the AST? In the use I have, I have already done mutations on the AST to rewrite parts, so it seems like I could continue to use...
Actually, unless we go through the AST this won't work for me since I need to retain comments.
Thanks. It appears to not be able to differentiate 0-level sequence from above, so any sequence-only docs end up with a gutter of indentation. This is solved by post-processing, but...
Sure, the tool is github.com/efd6/fumpt, I've put the state with this reformatting in https://github.com/efd6/fumpt/tree/redent The test data shows the kind of things we see (txtar format for ease of reading)....
A work around for this is to apply a mutating visitor to the AST like so https://play.golang.com/p/i3NZO58U-Rs, which should give an indication where the bug is. ``` type indentVisitor struct{}...