(span Span, value float64, ts uint64)
| 906 | } |
| 907 | |
| 908 | func (u *UngroupedAggregator) ObserveExemplar(span Span, value float64, ts uint64) { |
| 909 | all := span.AllAttributes() |
| 910 | lbls := make(Labels, 0, len(all)) |
| 911 | for k, v := range all { |
| 912 | lbls = append(lbls, Label{k.String(), v}) |
| 913 | } |
| 914 | u.innerAgg.ObserveExemplar(value, ts, lbls) |
| 915 | } |
| 916 | |
| 917 | func (u *UngroupedAggregator) Length() int { |
| 918 | return 0 |
nothing calls this directly
no test coverage detected