(ctx context.Context, structuredEvent StructuredEvent)
| 6 | ) |
| 7 | |
| 8 | func (tc *Client) TrackSynchronous(ctx context.Context, structuredEvent StructuredEvent) { |
| 9 | tc.track(ctx, structuredEvent, false) |
| 10 | } |
| 11 | |
| 12 | // Track records a structured telemetry event with type-safe properties (synchronous) |
| 13 | // This is the only method for telemetry tracking, all event-specific methods are wrappers around this one |
no test coverage detected