risingwave_common::telemetry::report

Trait TelemetryInfoFetcher

source
pub trait TelemetryInfoFetcher {
    // Required method
    fn fetch_telemetry_info<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Result<Option<String>, TelemetryError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn fetch_telemetry_info<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<Option<String>, TelemetryError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Fetches telemetry info from meta. Currently it’s only tracking_id (cluster_id).

Implementors§