gpt4 book ai didi

parse-platform - 如何使用 New Relic 跟踪 Parse Server 的类名?

转载 作者:行者123 更新时间:2023-12-02 19:28:04 24 4
gpt4 key购买 nike

添加 New Relic APM 来跟踪 Parse Server 时,对 Cloud Code 函数和类的调用显示为:

/parse/classes/:className
/parse/functions/:functionName

相反,我想将它们显示为:

/parse/classes/myClass
/parse/functions/myFunction

对于 Cloud Code 函数调用,我可以设置事务名称:

Parse.Cloud.define("myFunction", async(request) => {
newrelic.setTransactionName("myFunction");
//...
});

但是我如何跟踪所有类调用的名称?

最佳答案

New Relic Node.js 代理具有针对无法关闭的事务的自动命名功能*。

来自docs :

The only important thing to know about New Relic's support for Express, Restify, or Hapi is that if you're dissatisfied with the names it comes up with, you can use the API calls described below to come up with more descriptive names.

因此,解决方案是通过向 newrelic.js 添加自定义名称规则来覆盖这些默认名称规则。诀窍是使用正则表达式组替换作为名称。

rules: {
name: [
// post /parse/classes/:classeName
// get /parse/classes/:classeName/:objectId
{
pattern: '^(\/parse\/classes\/[_0-9A-Za-z]*)(\/.*)*',
name: '\\1'
},
// post /parse/functions/:functionName
{
pattern: '^(\/parse\/functions\/.*)$',
name: '\\1'
},
// post /parse/files/:filename
// get /parse/files/:appId/:filename
{
pattern: '^(\/parse\/files)\/.*$',
name: '\\1'
}
]
}

上面的模式按类名对调用进行分组,忽略有时附加的对象 ID。这使得也无需为每个 Cloud Code 函数添加 setTransactionName


*Java 代理可以关闭该选项,但 Node.js 代理似乎不存在该选项。

关于parse-platform - 如何使用 New Relic 跟踪 Parse Server 的类名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62238021/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com