| 37 | } |
| 38 | |
| 39 | type AnalyticsTelemetryClient struct { |
| 40 | client analytics.Client |
| 41 | // sequence numbers the Track events of one invocation so their order can |
| 42 | // be reconstructed downstream: Segment stores timestamps with millisecond |
| 43 | // precision, so back-to-back events can tie. |
| 44 | sequence atomic.Int64 |
| 45 | } |
| 46 | |
| 47 | type AnalyticsTelemetryLogger struct { |
| 48 | debug bool |
nothing calls this directly
no outgoing calls
no test coverage detected