Jump to content
WAPT Forum

boerni

Members
  • Content Count

    2
  • Joined

  • Last visited

Everything posted by boerni

  1. Hi there, I need to monitor some processes during the load test. I've tried to add a new WMI custom counter and used the method counter.WMIGetValue. When I use this method I will only receive one value. But I need the complete list of all processes. The main problem is the WQL query where I have to specify a column. Is there any way to get the complete record set so that I could use enumeration to get my data? For example var objWMIService = GetObject("winmgmts://<computername>/rootCIMV2"); var colItems = objWMIService.EcexQuery("Select * FROM Win32_PerfRawData_PerfProc_Process", "WQL"); var enumItems = new Enumarator(colItems); for (; !enumItems.atEnd(); enumItems.moveNext()) { var objItem = enumItem(); ... } Any idea? Thanks Boerni
  2. Hi there, I'm working with WAPT Pro 4.0. I want to analyze our test results in Excel. Therefore I want to use the CSV results. The most important values for our report to the management are the response times. In the report are columns woth the total values. Can you tell me how these values are calculated for avg and avg90? When I calculate with the raw data in the CSV files I get other values. Best regards Boerni
×
×
  • Create New...