(series []cortexpb.LabelAdapter, limit int)
| 122 | } |
| 123 | |
| 124 | func newTooManyLabelsError(series []cortexpb.LabelAdapter, limit int) ValidationError { |
| 125 | return &tooManyLabelsError{ |
| 126 | series: series, |
| 127 | limit: limit, |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | func (e *tooManyLabelsError) Error() string { |
| 132 | return fmt.Sprintf( |
no outgoing calls