MaxFetchedSeriesPerQuery returns the maximum number of series allowed per query when fetching chunks from ingesters and blocks storage.
(userID string)
| 783 | // MaxFetchedSeriesPerQuery returns the maximum number of series allowed per query when fetching |
| 784 | // chunks from ingesters and blocks storage. |
| 785 | func (o *Overrides) MaxFetchedSeriesPerQuery(userID string) int { |
| 786 | return o.GetOverridesForUser(userID).MaxFetchedSeriesPerQuery |
| 787 | } |
| 788 | |
| 789 | // MaxFetchedChunkBytesPerQuery returns the maximum number of bytes for chunks allowed per query when fetching |
| 790 | // chunks from ingesters and blocks storage. |
no test coverage detected