Florian Bernd
Florian Bernd
Didn't know Doxygen even support that! That would be way better than the MS defines, or even custom ones.
Yes, we should clarify that in the documentation. The proper way of omitting an operand here is to return ZYDIS_STATUS_SKIP_TOKEN. A failure status code immediately stops the complete formatting and...
Right. There is a ! missing for the post-operand condition check.
If you create a PR, we can fix it as soon as you are ready 🙂 Should be fixed by adding the missing "not" in front of the ZYAN_SUCCESS() call...
Hi @arthurvb, the `GeoShapeQuery` indeed is one of the few things missing right now. It's definitely planned to bring back support for this, but in the meantime there is no...
Hi @michael-budnik , sorry for the confusion. The `GeoShapeQuery` is already available since 2024-07-29. It seems like I missed this issue when I closed the other ones related to new...
Hi @RolfDeVries, for now you could try the following workaround: ```csharp var histogram = searchResponse.Aggregations?.GetDateHistogram("aggregation-name"); var dict = histogram?.Buckets.ToDictionary(k => DateTimeOffset.FromUnixTimeMilliseconds(k.Key).Date, v => v.DocCount); ``` It definitely makes sense to...
Hi @RolfDeVries, thanks for reporting. It seems that the `FilterPath` setting currently is only available for the request classes (e.g. `StatsRequest`), but not the corresponding descriptors (`StatsRequestDescriptor`). I'll fix that...
Hi @RolfDeVries, sorry for the delay. There was a lot of higher priority things to do which caused this issue to drop of my radar. I just created a PR...
Hi @dav-u, could you please send me the JSON response for this query? (e.g. by manually calling the endpoint via CURL or the Kibana Dev Console).