(s Span)
| 228 | } |
| 229 | |
| 230 | func exemplarNaN(s Span) (float64, uint64) { |
| 231 | return math.NaN(), s.StartTimeUnixNanos() / uint64(time.Millisecond) |
| 232 | } |
| 233 | |
| 234 | func exemplarDuration(s Span) (float64, uint64) { |
| 235 | v := float64(s.DurationNanos()) / float64(time.Second) |
nothing calls this directly
no test coverage detected