MaxGlobalSeriesPerUser returns the maximum number of series a user is allowed to store across the cluster.
(userID string)
| 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 { |
| 745 | return o.GetOverridesForUser(userID).MaxGlobalSeriesPerUser |
| 746 | } |
| 747 | |
| 748 | // MaxGlobalNativeHistogramSeriesPerUser returns the maximum number of native histogram series a user is allowed to store across the cluster. |
| 749 | func (o *Overrides) MaxGlobalNativeHistogramSeriesPerUser(userID string) int { |
no test coverage detected