MaxFetchedChunkBytesPerQuery returns the maximum number of bytes for chunks allowed per query when fetching chunks from ingesters and blocks storage.
(userID string)
| 789 | // MaxFetchedChunkBytesPerQuery returns the maximum number of bytes for chunks allowed per query when fetching |
| 790 | // chunks from ingesters and blocks storage. |
| 791 | func (o *Overrides) MaxFetchedChunkBytesPerQuery(userID string) int { |
| 792 | return o.GetOverridesForUser(userID).MaxFetchedChunkBytesPerQuery |
| 793 | } |
| 794 | |
| 795 | // MaxFetchedDataBytesPerQuery returns the maximum number of bytes for all data allowed per query when fetching |
| 796 | // from ingesters and blocks storage. |
no test coverage detected