(series []cortexpb.LabelAdapter, labelName, labelValue string, limit int)
| 64 | } |
| 65 | |
| 66 | func newLabelValueTooLongError(series []cortexpb.LabelAdapter, labelName, labelValue string, limit int) ValidationError { |
| 67 | return &labelValueTooLongError{ |
| 68 | labelName: labelName, |
| 69 | labelValue: labelValue, |
| 70 | series: series, |
| 71 | limit: limit, |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | // labelsSizeBytesExceededError is a customized ValidationError, in that the cause and the series are |
| 76 | // formatted in different order in Error. |
no outgoing calls