Interface for pluggable analyzers

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

Properties

Methods

Properties

category: string

Category for grouping warnings in UI

name: string

Unique name for this analyzer

Methods