servers::interceptor

Trait OpenTelemetryProtocolInterceptor

Source
pub trait OpenTelemetryProtocolInterceptor {
    type Error: ErrorExt;

    // Provided method
    fn pre_execute(
        &self,
        _query_ctx: QueryContextRef,
    ) -> Result<(), Self::Error> { ... }
}
Expand description

OpenTelemetryProtocolInterceptor can track life cycle of an open telemetry protocol request and customize or abort its execution at given point.

Required Associated Types§

Provided Methods§

Source

fn pre_execute(&self, _query_ctx: QueryContextRef) -> Result<(), Self::Error>

Implementations on Foreign Types§

Source§

impl<E: ErrorExt> OpenTelemetryProtocolInterceptor for Option<OpenTelemetryProtocolInterceptorRef<E>>

Source§

type Error = E

Source§

fn pre_execute(&self, query_ctx: QueryContextRef) -> Result<(), Self::Error>

Implementors§