When adding New Relic APM to track Parse Server, the calls to Cloud Code functions and Classes are displayed as:
/parse/classes/:className
/parse/functions/:functionName
Instead I want to display them as:
/parse/classes/myClass
/parse/functions/myFunction
For Cloud Code function calls I can set the transaction name:
Parse.Cloud.define("myFunction", async(request) => {
newrelic.setTransactionName("myFunction");
//...
});
But how can I track the names of all the calls to classes?