0

我有一个使用 node.js、koa、koa-router 的应用程序。我想将 newrelic 添加到我的应用程序中,但它不支持 koa。

所以我尝试使用 koa-newrelic ( https://github.com/AfterShip/koa-newrelic ) 但它仍然不起作用。

我仍然得到/*所有交易。

谁有这方面的经验?

4

1 回答 1

1

我的同事帮我解决了这个问题。

解决方案如下

1.declare custom koa new relic here

//****************** myKoaNewRelic.js *****************
'use strict'

module.exports = function monitor(router, newrelic) {
  return function* monitor(next) {
    const route = this.params[0]
    for (const layer of router.stack) {
      if (layer.path !== '(.*)') {
        const method = (layer.methods.indexOf('HEAD') !== -1) ? layer.methods[1] : layer.methods[0]
        if (route.match(layer.regexp) && method === this.request.method) {
          newrelic.setControllerName(layer.path, method)
        }
      }
    }
    yield next
  }
}

2.像这样更新主index.js

//****************** index.js *****************
'use strict'    

const newrelic = require('newrelic')
const koaNewrelic = require('./myKoaNewRelic')
const app = require('koa')()
const router = require('koa-router')()

router.use(koaNewrelic(router, newrelic))

// DO SOME STUFF
于 2016-09-28T04:16:41.237 回答