(value string)
| 409 | } |
| 410 | |
| 411 | func (d *dataToEncode) tryAppendLabelValue(value string) { |
| 412 | if _, ok := d.cache.LabelValue.GetIDByValue(value); !ok { |
| 413 | d.labelValues.Add(value) |
| 414 | } |
| 415 | } |
| 416 | |
| 417 | func (d *dataToEncode) tryAppendMetricAPPLabelLayout(metricName, labelName string) { |
| 418 | k := cache.NewLayoutKey(metricName, labelName) |
no test coverage detected