(trace types.TraceRecord)
| 1105 | func (e *captureTelemetryExporter) EmitMetric(_ string, _ float64, _ map[string]string) {} |
| 1106 | func (e *captureTelemetryExporter) EmitEvent(_ types.Event) {} |
| 1107 | func (e *captureTelemetryExporter) EmitTrace(trace types.TraceRecord) { |
| 1108 | e.mu.Lock() |
| 1109 | defer e.mu.Unlock() |
| 1110 | e.traces = append(e.traces, trace) |
| 1111 | } |
| 1112 | |
| 1113 | func (e *captureTelemetryExporter) Traces() []types.TraceRecord { |
| 1114 | e.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected