To use the Neotys Design Studio module for CA APM, it is necessary to install the Synthetic User Field Pack Extension in the CA APM agent.
For example, to edit a the dotnet.pbd file on Windows: C:\Program Files\CA Wily\dotNetAgent\wily\dotnet.pbd, it is necessary to:
"PageInfoTracer" with "SynthPageInfoTracer".*TraceOneMethodWithParametersIfFlagged: ASPNETTracing
SetTracerClassMapping: SynthPageInfoTracer
com.ca.gd.asp.SynthPageInfoTracer
com.wily.introscope.probebuilder.validate.ResourceNameValidator
SetTracerOrdering: SynthPageInfoTracer -1000
dotnet_sample.pbd sample file located in the <neoload_install_dir>/conf/ca apm/ directory.For example, to edit an IntroscopeAgent.profile file on Windows: C:\Program Files\CA Wily\dotNetAgent\wily\IntroscopeAgent.profile, the following elements are required:
Transaction Tracer Configuration heading must not start with the # character and must be filled in as follows:introscope.agent.transactiontracer.userid.method=HttpRequest.Headers.Get introscope.agent.transactiontracer.userid.key=SyntheticID
Enabling Collection of Filtered Parameters heading must not start with the # character and must be filled in as follows:introscope.agent.asp.disableHttpProperties=false
URL Grouping Configuration heading must not start with the # character and must be filled in as follows:introscope.agent.urlgroup.keys=default
introscope.agent.urlgroup.group.default.pathprefix=*
introscope.agent.urlgroup.group.default.format=Default
Default node. You may leave the last property value empty to retrieve separate metrics for each request in a page. However, leaving the property value empty can result in significantly more metrics and overhead being generated by the Introscope (CA APM) agent which could adversely affect the performance of the monitored applications.IntroscopeAgent_dotnet_sample.profile sample file located in the <neoload_install_dir>/conf/ca apm/ directory.<neoload_install_dir>/conf/ca apm/SynthPageInfoTracer.ext.dll file into the CA APM .NET agent ext directory.web.config or machine.config.<runtime> XML tag and insert the following XML node:<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="wily.Agent" publicKeyToken="2B41FDFB6CD662A5"/>
<bindingRedirect oldVersion="7.2.2.0" newVersion="9.0.0.0" />
</dependentAssembly>
</assemblyBinding>
newVersion attribute for the bindingRedirect tag with the version for the .NET agent monitoring the .NET application.dotnet.pbd file in the CA APM .NET agent installation directory.IntroscopeAgent.profile file in the CA APM .NET agent installation directory.web_sample.config sample file located in the <neoload_install_dir>/conf/ca apm/ directory in order to avoid any character coding problems resulting from a cut and paste from this document.