()
| 1483 | } |
| 1484 | |
| 1485 | func (e *MetricsEvaluator) Metrics() (uint64, uint64, uint64) { |
| 1486 | e.mtx.Lock() |
| 1487 | defer e.mtx.Unlock() |
| 1488 | |
| 1489 | return e.bytes, e.spansTotal, e.spansDeduped |
| 1490 | } |
| 1491 | |
| 1492 | func (e *MetricsEvaluator) Results() SeriesSet { |
| 1493 | e.mtx.Lock() |
no outgoing calls