Forum Discussion

Kostja's avatar
Kostja
Contributor
10 years ago
Solved

Discard the Performance Counters in the test log

Hey guys,   i used the sample code on this page --> http://support.smartbear.com/viewarticle/55140/?utm_source=site-search&utm_medium=search-results&utm_campaign=site-search-c&utm_term=scripting+ac...
  • HKosova's avatar
    10 years ago

    Hi Kostja,

    In the beginning of the ExportLogData function, check the Scheme.Name. If it's "Performance Counters", skip the rest of the function.

     

    // JScript

    function ExportLogData(ALogData) { var Scheme = ALogData.Scheme; if (Scheme.Name == "Performance Counters") return;

    // ...
    }