applicationinsights
Version:
Microsoft Application Insights module for Node.js
18 lines • 838 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.TelemetryType = void 0;
/**
* Telemetry types supported by this SDK
*/
var TelemetryType;
(function (TelemetryType) {
TelemetryType[TelemetryType["Event"] = 0] = "Event";
TelemetryType[TelemetryType["Exception"] = 1] = "Exception";
TelemetryType[TelemetryType["Trace"] = 2] = "Trace";
TelemetryType[TelemetryType["Metric"] = 3] = "Metric";
TelemetryType[TelemetryType["Request"] = 4] = "Request";
TelemetryType[TelemetryType["Dependency"] = 5] = "Dependency";
TelemetryType[TelemetryType["Availability"] = 6] = "Availability";
TelemetryType[TelemetryType["PageView"] = 7] = "PageView";
})(TelemetryType = exports.TelemetryType || (exports.TelemetryType = {}));
//# sourceMappingURL=telemetryType.js.map
;