Telemety item supported in Core

interface ITelemetryItem {
    baseData?: {
        [key: string]: any;
    };
    baseType?: string;
    data?: ICustomProperties;
    ext?: {
        [key: string]: any;
    };
    iKey?: string;
    name: string;
    tags?: Tags;
    time?: string;
    ver?: string;
}

Properties

baseData?: {
    [key: string]: any;
}

Based on schema for part B

baseType?: string

Telemetry type used for part B

Custom data

ext?: {
    [key: string]: any;
}

System context properties of the telemetry item, example: ip address, city etc

iKey?: string

Identifier of the resource that uniquely identifies which resource data is sent to

name: string

Unique name of the telemetry item

tags?: Tags

System context property extensions that are not global (not in ctx)

time?: string

Timestamp when item was sent

ver?: string

CommonSchema Version of this SDK