Your IP : 216.73.216.17


Current Path : /etc/kibana/node_modules/monitor-event-loop-delay/
Upload File :
Current File : //etc/kibana/node_modules/monitor-event-loop-delay/index.js

try {
  const perfHooks = require('perf_hooks')
  if (typeof perfHooks.monitorEventLoopDelay !== 'function') {
    throw new Error('No builtin event loop monitor')
  }
  module.exports = opts => perfHooks.monitorEventLoopDelay(opts)
} catch (err) {
  const EventLoopDelayHistogram = require('./polyfill')
  module.exports = opts => new EventLoopDelayHistogram(opts)
}