Instances of Message represent printf-like trace statements that are text-searched. Log4Net, NLog and other text-based log file entries are translated into intances of this type. The message does not have measurements.

interface IMessageData {
    measurements: any;
    message: string;
    properties: any;
    severityLevel: number;
    ver: number;
}

Hierarchy (view full)

Implemented by

Properties

measurements: any

Collection of custom measurements.

message: string

Trace message

properties: any

Collection of custom properties.

severityLevel: number

Trace severity level.

ver: number

Schema version