MaxLabelNameLength returns maximum length a label name can be.
(userID string)
| 683 | |
| 684 | // MaxLabelNameLength returns maximum length a label name can be. |
| 685 | func (o *Overrides) MaxLabelNameLength(userID string) int { |
| 686 | return o.GetOverridesForUser(userID).MaxLabelNameLength |
| 687 | } |
| 688 | |
| 689 | // MaxLabelValueLength returns maximum length a label value can be. This also is |
| 690 | // the maximum length of a metric name. |
nothing calls this directly
no test coverage detected