====================== TelemetryAPI Interface ====================== TelemetryAPI receives telemetry events from client applications. This endpoint is unauthenticated to support anonymous telemetry collection.
| 34 | // TelemetryAPI receives telemetry events from client applications. |
| 35 | // This endpoint is unauthenticated to support anonymous telemetry collection. |
| 36 | type TelemetryAPI interface { |
| 37 | // RecordEvents records a batch of telemetry events from a client application. |
| 38 | RecordEvents(context.Context, *RecordEventsRequest) (*RecordEventsResponse, error) |
| 39 | } |
| 40 | |
| 41 | // ============================ |
| 42 | // TelemetryAPI Protobuf Client |
no outgoing calls
no test coverage detected