UNPKG

applicationinsights

Version:

Microsoft Application Insights module for Node.js

26 lines 1.61 kB
"use strict"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. Object.defineProperty(exports, "__esModule", { value: true }); exports.PerformanceCounterMetricNames = exports.StandardMetricNames = exports.APPLICATION_INSIGHTS_NO_STANDARD_METRICS = void 0; /** * Disable Standard Metrics environment variable name. */ exports.APPLICATION_INSIGHTS_NO_STANDARD_METRICS = "APPLICATION_INSIGHTS_NO_STANDARD_METRICS"; var StandardMetricNames; (function (StandardMetricNames) { StandardMetricNames["HTTP_REQUEST_DURATION"] = "azureMonitor.http.requestDuration"; StandardMetricNames["HTTP_DEPENDENCY_DURATION"] = "azureMonitor.http.dependencyDuration"; StandardMetricNames["EXCEPTION_COUNT"] = "azureMonitor.exceptionCount"; StandardMetricNames["TRACE_COUNT"] = "azureMonitor.traceCount"; })(StandardMetricNames = exports.StandardMetricNames || (exports.StandardMetricNames = {})); var PerformanceCounterMetricNames; (function (PerformanceCounterMetricNames) { PerformanceCounterMetricNames["PRIVATE_BYTES"] = "Private_Bytes"; PerformanceCounterMetricNames["AVAILABLE_BYTES"] = "Available_Bytes"; PerformanceCounterMetricNames["PROCESSOR_TIME"] = "Processor_Time"; PerformanceCounterMetricNames["PROCESS_TIME"] = "Process_Time"; PerformanceCounterMetricNames["REQUEST_RATE"] = "Request_Rate"; PerformanceCounterMetricNames["REQUEST_DURATION"] = "Request_Execution_Time"; })(PerformanceCounterMetricNames = exports.PerformanceCounterMetricNames || (exports.PerformanceCounterMetricNames = {})); //# sourceMappingURL=types.js.map