I have a class whose structure is
class MyClass { constructor() {} myMethod() { // do something } }
I want to trace myMethod() of MyClass using new relic in node JS, how can I achieve that ?.
myMethod()
MyClass