MaxLocalSeriesPerUser returns the maximum number of series a user is allowed to store in a single ingester.
(userID string)
| 727 | |
| 728 | // MaxLocalSeriesPerUser returns the maximum number of series a user is allowed to store in a single ingester. |
| 729 | func (o *Overrides) MaxLocalSeriesPerUser(userID string) int { |
| 730 | return o.GetOverridesForUser(userID).MaxLocalSeriesPerUser |
| 731 | } |
| 732 | |
| 733 | // MaxLocalNativeHistogramSeriesPerUser returns the maximum number of native histogram series a user is allowed to store in a single ingester. |
| 734 | func (o *Overrides) MaxLocalNativeHistogramSeriesPerUser(userID string) int { |
no test coverage detected