Loki: Do not chunk when refid contains do-not-chunk (#63276)

add ref-id to not chunk requests
This commit is contained in:
Sven Grossmann 2023-02-10 18:00:49 +01:00 committed by GitHub
parent 24c60486f6
commit 3f144924d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -305,6 +305,10 @@ export function requestSupportsPartitioning(queries: LokiQuery[]) {
return false;
}
if (queries[0].refId.includes('do-not-chunk')) {
return false;
}
return true;
}