Hi all,
I want to create BT's with all my purepaths splitted by several parameters, for exemple, one BT splitted by "oficina" and another splitted by "usuarioLogin". In my purepaths we've always calls to setDynatraceMonitor with several of these parameters:
but the method name is always the same (setDynatraceMonitor) with the key in the first parameter and the value in second. How can I create BT's for example for "Requests by oficina" and "Requests by usuarioLogin? It's possible to create a mesure getting the second argument and restricting to one concrete value for the first?
Thanks in advance!
Answer by Andreas G. ·
Hi Joseph
Unfortunately this is not possible in the moment. If you create a measure for a method argument value this measure will return the argumetn value of the first occurence of this method call. In your case this would always be idSesion.
I suggest you extend your method from setDynatraceMonitor(name, value) to something like setDynatraceMonitor(session, username, login, ...) - so - you capture all that context data in a single method call. then you can create measures for the different arguments and split by them individually
Andi
JANUARY 15, 3:00 PM GMT / 10:00 AM ET