I really don't know why you're seeing the problem connecting to the local controller and don't know where to go next. Can you contact support I wonder if there are known issues with .NET remoting that cause this.
The problem with reading the counters is that the 64 bit OS is configured to remotely read 64 bit counters, but you want the 32 bit counters. I got this answer from a dev on the x64 team:
How to read 32-bit counters on a x64 systemWhen remotely reading performance counters the Performance Logs and Alerts service on the remote system communicates with the Remote Registry service on the target x64 system. By default the Remote Registry service that is loaded is the 64-bit version and it looks to the 64-bit registry structure, causing the x64 system to send back the 64-bit counter information to the remote system, even if the remote system is a 32-bit OS. Thus we are unable to remote monitor any 32-bit counters on the x64 system.
Reg path |
Param |
Old Value |
New Value |
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteRegistry |
ImagePath |
%SystemRoot%\System32\svchost.exe -k regsvc |
%SystemRoot%\SysWow64\svchost.exe -k regsvc |
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteRegistry\Parameters |
ServiceDll |
%SystemRoot%\System32\regsvc.dll |
%SystemRoot%\SysWow64\regsvc.dll | Copy these commands into a .reg file and run it: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteRegistry] "ImagePath"="%SystemRoot%\SysWow64\svchost.exe -k regsvc” [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteRegistry\Parameters] "ServiceDll"="%SystemRoot%\SysWow64\regsvc.dll"
This will load the 32-bit version of the Remote Registry service, which looks to the 32-bit registry structure, causing the x64 system to send back the 32-bit counter information to the remote system. Further testing showed that remote admiistration tools, like Regedit, Computer Management, System Information, etc., all still work even with the 32-bit version of Remote Regitry loaded on the x64 system.
In addition to the registry changes please make sure to follow-up with a reboot of the machine where you changed the registry and also your load test controller (although it might be good enough just restarting the controller service). Finally, the ASP.NET counter category will have the version appended to it. So you need to open <installdir>\common7\IDE\Templates\LoadTest\CounterSets\ASP.NET.counterset, and change <CounterCategory Name="ASP.NET"> To <CounterCategory Name="ASP.NET v2.0.50727">
|