MaxLocalSeriesPerMetric returns the maximum number of series allowed per metric in a single ingester.
(userID string)
| 737 | |
| 738 | // MaxLocalSeriesPerMetric returns the maximum number of series allowed per metric in a single ingester. |
| 739 | func (o *Overrides) MaxLocalSeriesPerMetric(userID string) int { |
| 740 | return o.GetOverridesForUser(userID).MaxLocalSeriesPerMetric |
| 741 | } |
| 742 | |
| 743 | // MaxGlobalSeriesPerUser returns the maximum number of series a user is allowed to store across the cluster. |
| 744 | func (o *Overrides) MaxGlobalSeriesPerUser(userID string) int { |
no test coverage detected