common_greptimedb_telemetry

Trait Collector

Source
pub trait Collector {
    // Required methods
    fn get_mode(&self) -> Mode;
    fn get_retry(&self) -> i32;
    fn inc_retry(&mut self);
    fn set_uuid_cache(&mut self, uuid: String);
    fn get_uuid_cache(&self) -> Option<String>;
    fn get_nodes<'life0, 'async_trait>(
        &'life0 self,
    ) -> Pin<Box<dyn Future<Output = Option<i32>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;

    // Provided methods
    fn get_version(&self) -> String { ... }
    fn get_git_hash(&self) -> String { ... }
    fn get_os(&self) -> String { ... }
    fn get_arch(&self) -> String { ... }
    fn get_uuid(&mut self, working_home: &Option<String>) -> Option<String> { ... }
}

Required Methods§

Source

fn get_mode(&self) -> Mode

Source

fn get_retry(&self) -> i32

Source

fn inc_retry(&mut self)

Source

fn set_uuid_cache(&mut self, uuid: String)

Source

fn get_uuid_cache(&self) -> Option<String>

Source

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

Provided Methods§

Source

fn get_version(&self) -> String

Source

fn get_git_hash(&self) -> String

Source

fn get_os(&self) -> String

Source

fn get_arch(&self) -> String

Source

fn get_uuid(&mut self, working_home: &Option<String>) -> Option<String>

Implementors§