servers::query_handler

Trait OpenTelemetryProtocolHandler

Source
pub trait OpenTelemetryProtocolHandler: PipelineHandler {
    // Required methods
    fn metrics<'life0, 'async_trait>(
        &'life0 self,
        request: ExportMetricsServiceRequest,
        ctx: QueryContextRef,
    ) -> Pin<Box<dyn Future<Output = Result<Output>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn traces<'life0, 'async_trait>(
        &'life0 self,
        pipeline_handler: PipelineHandlerRef,
        request: ExportTraceServiceRequest,
        pipeline: PipelineWay,
        pipeline_params: GreptimePipelineParams,
        table_name: String,
        ctx: QueryContextRef,
    ) -> Pin<Box<dyn Future<Output = Result<Output>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn logs<'life0, 'async_trait>(
        &'life0 self,
        pipeline_handler: PipelineHandlerRef,
        request: ExportLogsServiceRequest,
        pipeline: PipelineWay,
        pipeline_params: GreptimePipelineParams,
        table_name: String,
        ctx: QueryContextRef,
    ) -> Pin<Box<dyn Future<Output = Result<Output>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn metrics<'life0, 'async_trait>( &'life0 self, request: ExportMetricsServiceRequest, ctx: QueryContextRef, ) -> Pin<Box<dyn Future<Output = Result<Output>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Handling opentelemetry metrics request

Source

fn traces<'life0, 'async_trait>( &'life0 self, pipeline_handler: PipelineHandlerRef, request: ExportTraceServiceRequest, pipeline: PipelineWay, pipeline_params: GreptimePipelineParams, table_name: String, ctx: QueryContextRef, ) -> Pin<Box<dyn Future<Output = Result<Output>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Handling opentelemetry traces request

Source

fn logs<'life0, 'async_trait>( &'life0 self, pipeline_handler: PipelineHandlerRef, request: ExportLogsServiceRequest, pipeline: PipelineWay, pipeline_params: GreptimePipelineParams, table_name: String, ctx: QueryContextRef, ) -> Pin<Box<dyn Future<Output = Result<Output>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§