applicationinsights
Version:
Microsoft Application Insights module for Node.js
17 lines (16 loc) • 530 B
TypeScript
import { Telemetry } from "./telemetry";
import { SeverityLevel } from "../../generated";
/**
* Trace telemetry reports technical, usually detailed information about the environment,
* usage of resources, performance, capacity etc
*/
export interface TraceTelemetry extends Telemetry {
/** Trace message */
message: string;
/** Trace severity level. */
severity?: SeverityLevel;
/** Collection of custom measurements. */
measurements?: {
[propertyName: string]: number;
};
}