pub async fn send_telemetry_event(event: TelemetryEvent)Expand description
Sends a telemetry event to Quickwit’s server via HTTP.
Telemetry guarantees to send at most 1 request per minute. Each requests can ship at most 10 messages.
If this methods is called too often, some events will be dropped.
If the http requests fail, the error will be silent.
We voluntarily use an enum here to make it easier for reader to audit the type of information that is send home.