@instana/shared-metrics
Version:
Internal metrics plug-in package for Node.js monitoring with Instana
20 lines (16 loc) • 572 B
JavaScript
/*
* (c) Copyright IBM Corp. 2021
* (c) Copyright Instana Inc. and contributors 2016
*/
;
exports.payloadPrefix = 'activeHandles';
Object.defineProperty(exports, 'currentPayload', {
get: function () {
// TODO: _getActiveHandles is deprecated. Replace with getActiveResourcesInfo.
// https://nodejs.org/api/deprecations.html#dep0161-process_getactiverequests-and-process_getactivehandles
// Added in v16.
// refs https://jsw.ibm.com/browse/INSTA-64277
// @ts-ignore
return process._getActiveHandles().length;
}
});