UNPKG

@opentelemetry/instrumentation-grpc

Version:
29 lines 1.29 kB
import { SpanStatusCode } from '@opentelemetry/api'; import type { SpanStatus, Span } from '@opentelemetry/api'; import type { status as GrpcStatus, Metadata } from '@grpc/grpc-js'; import type { IgnoreMatcher } from './types'; export declare const URI_REGEX: RegExp; /** * Convert a grpc status code to an opentelemetry SpanStatus code. * @param status */ export declare const _grpcStatusCodeToOpenTelemetryStatusCode: (status?: GrpcStatus) => SpanStatusCode; export declare const _grpcStatusCodeToSpanStatus: (status: number) => SpanStatus; /** * Returns true if the current plugin configuration * ignores the given method. * @param methodName the name of the method * @param ignoredMethods a list of matching patterns * @param onException an error handler for matching exceptions */ export declare const _methodIsIgnored: (methodName: string, ignoredMethods?: IgnoreMatcher[]) => boolean; /** * Return method and service values getting from grpc name/path * @param name the grpc name/path */ export declare const _extractMethodAndService: (name: string) => { service: string; method: string; }; export declare function metadataCapture(type: 'request' | 'response', metadataToAdd: string[]): (span: Span, metadata: Metadata) => void; //# sourceMappingURL=utils.d.ts.map