Send analytics about the query vector length

This commit is contained in:
Clément Renault 2023-06-27 10:19:30 +02:00
parent eecf20f109
commit f3e4d70638
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4

View File

@ -548,6 +548,10 @@ pub struct SearchAggregator {
// The maximum number of terms in a q request
max_terms_number: usize,
// vector
// The maximum number of floats in a vector request
max_vector_size: usize,
// every time a search is done, we increment the counter linked to the used settings
matching_strategy: HashMap<String, usize>,
@ -617,6 +621,10 @@ impl SearchAggregator {
ret.max_terms_number = q.split_whitespace().count();
}
if let Some(ref vector) = query.vector {
ret.max_vector_size = vector.len();
}
if query.is_finite_pagination() {
let limit = query.hits_per_page.unwrap_or_else(DEFAULT_SEARCH_LIMIT);
ret.max_limit = limit;