DropLabels returns the list of labels to be dropped when ingesting HA samples for the user.
(userID string)
| 678 | |
| 679 | // DropLabels returns the list of labels to be dropped when ingesting HA samples for the user. |
| 680 | func (o *Overrides) DropLabels(userID string) flagext.StringSlice { |
| 681 | return o.GetOverridesForUser(userID).DropLabels |
| 682 | } |
| 683 | |
| 684 | // MaxLabelNameLength returns maximum length a label name can be. |
| 685 | func (o *Overrides) MaxLabelNameLength(userID string) int { |
nothing calls this directly
no test coverage detected