Member Junction
    Preparing search index...

    Interface TelemetryAnalyzer

    Interface for pluggable analyzers

    interface TelemetryAnalyzer {
        category: string;
        name: string;
        analyze(
            event: TelemetryEvent,
            context: TelemetryAnalyzerContext,
        ): TelemetryInsight;
    }
    Index

    Properties

    Methods

    Properties

    category: string

    Category for grouping warnings in UI

    name: string

    Unique name for this analyzer

    Methods