Dynatrace PurePath的黄色条表示方法调用,也称作方法耗时。下面是一个示例:
public class ExampleClass {
public void method1() {
// some code
}
public void method2() {
method1(); // this call will show up as a yellow bar in Dynatrace PurePath
}
}
在该示例中,如果在method2()中调用了method1(),则在Dynatrace PurePath中会显示黄色条,表示method1()的调用时间。