MaxLocalMetadataPerMetric returns the maximum number of metadata allowed per metric in a single ingester.
(userID string)
| 885 | |
| 886 | // MaxLocalMetadataPerMetric returns the maximum number of metadata allowed per metric in a single ingester. |
| 887 | func (o *Overrides) MaxLocalMetadataPerMetric(userID string) int { |
| 888 | return o.GetOverridesForUser(userID).MaxLocalMetadataPerMetric |
| 889 | } |
| 890 | |
| 891 | // MaxGlobalMetricsWithMetadataPerUser returns the maximum number of metrics with metadata a user is allowed to store across the cluster. |
| 892 | func (o *Overrides) MaxGlobalMetricsWithMetadataPerUser(userID string) int { |
no test coverage detected