(span ot.Span, eventName, eventValue string)
| 121 | } |
| 122 | |
| 123 | func (pt *proxyTracing) logStreamEvent(span ot.Span, eventName, eventValue string) { |
| 124 | if !pt.logStreamEvents { |
| 125 | return |
| 126 | } |
| 127 | |
| 128 | pt.logEvent(span, eventName, eventValue) |
| 129 | } |
| 130 | |
| 131 | func (pt *proxyTracing) startFilterTracing(operation string, ctx *context) *filterTracing { |
| 132 | if pt.disableFilterSpans { |