(series []cortexpb.LabelAdapter, labelName string, limit int)
| 42 | } |
| 43 | |
| 44 | func newLabelNameTooLongError(series []cortexpb.LabelAdapter, labelName string, limit int) ValidationError { |
| 45 | return &labelNameTooLongError{ |
| 46 | labelName: labelName, |
| 47 | series: series, |
| 48 | limit: limit, |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | // labelValueTooLongError is a customized ValidationError, in that the cause and the series are |
| 53 | // formatted in different order in Error. |
no outgoing calls