我正在尝试为我的kibana实例安装newrelic。我正在获取newrelic中的数据,但收到以下警告:Some modules were uninstrumented during the current time window: bluebird, hapi. Make sure require('newrelic'); is the first line of the application's main module.
我以为this是“应用程序的主模块”,但显然不是。我应该在kibana代码中的什么地方放置require('newrelic');
才能使其正常工作?
最佳答案
放置require('newrelic');
的正确位置是cli/index.js文件,该文件由kibana运行脚本调用。警告消息在newrelic UI中消失了一段时间。
关于node.js - 如何在Kibana中安装newrelic,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45383195/