I experienced that the query results of the extraction queries are limited to 10000 hits, which make sense if a Monitor is designed to trigger an alarm when result represents an error state:
"size": 0 doesn’t have any effect
setting the size manually above 10000 doesn’t work either
I might have a rather different use case, I need to monitor daily imports and check if the right amount of records have been loaded, for that the lowest threshold I’d need starts at 1mio hits.
This means my Monitor is designed to alarm based on results above 10000hits.
Is there a way to configure the limits of the hits, or for this particular use case it might be better to access the _count or _stats API in order to get a count of a daily index , rather that count based on querying records.