UNPKG

@coozzy/tracing

Version:

Provides tooling for distributed tracing with OpenTelemetry

16 lines (8 loc) 291 B
import {Tracer} from '@opentelemetry/api'; export as namespace tracing; export = Tracing; declare module Tracing { const tracer: Tracer; function init(exporterUrl: string, namespace: string, serviceName: string): void; function shutdown(): Promise<void>; }