@grand-board/otel-cloudflare - v6.11.0
    Preparing search index...

    Function getOriginalFetch

    • Get the original unpatched fetch function. Returns null if global fetch has not been patched. Use this for internal operations that should not be traced (e.g., OTLP export).

      Returns
          | {
              (
                  input: RequestInfo<unknown, CfProperties<unknown>> | URL,
                  init?: RequestInit<RequestInitCfProperties>,
              ): Promise<Response>;
              (
                  input: string | Request<unknown, CfProperties<unknown>> | URL,
                  init?: RequestInit<CfProperties<unknown>>,
              ): Promise<Response>;
          }
          | null