interface IPageViewPerformanceTelemetry {
    domProcessing?: string;
    duration?: string;
    measurements?: {
        [key: string]: number;
    };
    name?: string;
    networkConnect?: string;
    perfTotal?: string;
    properties?: {
        [key: string]: any;
    };
    receivedResponse?: string;
    sentRequest?: string;
    uri?: string;
}

Hierarchy

  • IPartC
    • IPageViewPerformanceTelemetry

Properties

domProcessing?: string

DOM processing time in TimeSpan 'G' (general long) format: d:hh:mm:ss.fffffff

duration?: string

Performance total in TimeSpan 'G' (general long) format: d:hh:mm:ss.fffffff". This represents the total page load time.

measurements?: {
    [key: string]: number;
}

Property bag to contain additional custom measurements (Part C)

-- please use properties instead

name?: string

name String - The name of the page. Defaults to the document title.

networkConnect?: string

Sent request time in TimeSpan 'G' (general long) format: d:hh:mm:ss.fffffff

perfTotal?: string

Performance total in TimeSpan 'G' (general long) format: d:hh:mm:ss.fffffff". This is total duration in timespan format.

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

Property bag to contain additional custom properties (Part C)

receivedResponse?: string

Received response time in TimeSpan 'G' (general long) format: d:hh:mm:ss.fffffff.

sentRequest?: string

Sent request time in TimeSpan 'G' (general long) format: d:hh:mm:ss.fffffff.

uri?: string

url String - a relative or absolute URL that identifies the page or other item. Defaults to the window location.