UNPKG

@coralogix/browser

Version:

Official Coralogix SDK for browsers

10 lines (9 loc) 486 B
import { InstrumentationBase, InstrumentationConfig } from '@opentelemetry/instrumentation'; import { CoralogixRumLabels, CustomMeasurementData } from '../../types'; export declare class CoralogixCustomMeasurementInstrumentation extends InstrumentationBase { constructor(config: InstrumentationConfig); protected init(): void; disable(): void; enable(): void; createCustomMeasurement(name: string, value: CustomMeasurementData, labels?: CoralogixRumLabels): void; }