Takaro - v0.6.0
    Preparing search index...

    Variable httpServerSpansIntegrationConst

    httpServerSpansIntegration: (
        options?: HttpServerSpansIntegrationOptions,
    ) => Integration & {
        name: "HttpServerSpans";
        processEvent: (event: Event) => Event | null;
        setup: (client: NodeClient) => void;
    }

    This integration emits spans for incoming requests handled via the node http module. It requires the httpServerIntegration to be present.

    Type Declaration

      • (
            options?: HttpServerSpansIntegrationOptions,
        ): Integration & {
            name: "HttpServerSpans";
            processEvent: (event: Event) => Event | null;
            setup: (client: NodeClient) => void;
        }
      • Parameters

        • Optionaloptions: HttpServerSpansIntegrationOptions

        Returns Integration & {
            name: "HttpServerSpans";
            processEvent: (event: Event) => Event | null;
            setup: (client: NodeClient) => void;
        }