UNPKG

applicationinsights

Version:

Microsoft Application Insights module for Node.js

16 lines (15 loc) 395 B
/** * Base telemetry interface encapsulating coming properties */ export interface Telemetry { /** * Telemetry time stamp. When it is not specified, current timestamp will be used. */ time?: Date; /** * Additional data used to filter events and metrics in the portal. Defaults to empty. */ properties?: { [key: string]: any; }; }