UNPKG

@instana/collector

Version:

The Instana Node.js metrics and trace data collector

17 lines (12 loc) 396 B
/* * (c) Copyright IBM Corp. 2021 * (c) Copyright Instana Inc. and contributors 2020 */ 'use strict'; const path = require('path'); const { uninstrumentedFs: fs } = require('@instana/core'); // @ts-ignore - Cannot redeclare exported variable exports.immediate = path.join(__dirname, '..', '..', '..', 'immediate.js'); if (!fs.existsSync(exports.immediate)) { exports.immediate = null; }