Theia API Documentation v1.74.0
    Preparing search index...

    Interface TelemetrySinkExperimental

    interface TelemetrySink {
        id: string;
        interests: readonly string[];
        scope?: "local" | "remote";
        flush?(): MaybePromise<void>;
        handle(event: TelemetryEvent): MaybePromise<void>;
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    id: string

    A unique sink ID containing at least two slash-separated segments.

    interests: readonly string[]

    A non-empty list of valid telemetry topic patterns.

    scope?: "local" | "remote"

    Defaults to remote.

    Methods