Instances of Event represent structured event records that can be grouped and searched by their properties. Event data item also creates a metric of event count by name.

interface IEventData {
    measurements: any;
    name: string;
    properties: any;
    ver: number;
}

Hierarchy (view full)

Implemented by

Properties

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.

ver: number

Schema version