An instance of PageView represents a generic action on a page like a button click. It is also the base type for PageView.

interface IPageViewData {
    duration: string;
    id: string;
    measurements: any;
    name: string;
    properties: any;
    url: string;
    ver: number;
}

Hierarchy

  • IEventData
    • IPageViewData

Implemented by

Properties

duration: string

Request duration in format: DD.HH:MM:SS.MMMMMM. For a page view (PageViewData), this is the duration. For a page view with performance information (PageViewPerfData), this is the page load time. Must be less than 1000 days.

id: string

Identifier of a page view instance. Used for correlation between page view and other telemetry items.

measurements: any

Collection of custom measurements.

name: string

Event name. Keep it low cardinality to allow proper grouping and useful metrics.

properties: any

Collection of custom properties.

url: string

Request URL with all query string parameters

ver: number

Schema version