UNPKG

@instana/core

Version:
23 lines (16 loc) 440 B
/* * (c) Copyright IBM Corp. 2025 */ 'use strict'; const constants = require('../constants'); module.exports.init = () => { const { OracleInstrumentation } = require('@opentelemetry/instrumentation-oracledb'); const instrumentation = new OracleInstrumentation(); if (!instrumentation.getConfig().enabled) { instrumentation.enable(); } }; module.exports.getKind = () => { const kind = constants.EXIT; return kind; };