NewNoop creates a new telemetry reporter that entirely discards all requests.
()
| 101 | |
| 102 | // NewNoop creates a new telemetry reporter that entirely discards all requests. |
| 103 | func NewNoop() Reporter { |
| 104 | return &noopReporter{} |
| 105 | } |
| 106 | |
| 107 | // Reporter sends data to the telemetry server. |
| 108 | type Reporter interface { |
no outgoing calls