Related pages:

The  uses a single configuration file to control agent behavior and .NET Machine Agent behavior. The configuration file specifies Controller connectivity, .NET Machine Agent operations, and app agent functionality for IIS applications, Windows services, and standalone applications. The single configuration file enables you to:

Use the Controller to upload and manage .NET Agent configuration files. From the Controller, you can deploy a configuration to a machine or multiple machines where the agent is installed. See Manage Configuration for .NET.

Configure Agent Properties

You configure the agent properties in the config.xml file in the agent Config directory. To edit the config.xml, you must launch the editor as an administrator. When you run the .NET Agent Configuration Utility, it writes the config.xml file to one of these locations:

Customize .NET Agent Behavior in config.xml

Some  configurations require that you edit the config.xml:

  1. Shut down the AppDynamics.Agent.Coordinator service.
  2. Edit the config.xml file as an administrator.

  3. Modify the XML file according to the configuration instructions.

  4. Save the config.xml file.

  5. Start the AppDynamics.Agent.Coordinator service.
  6. In some cases, you may need to restart IIS, instrumented Windows services, or instrumented Standalone applications. See individual  administration topics.

Example Minimal config.xml

The most basic configuration shows the required sections for agent configuration. This example instruments all IIS applications using the automatic element, <automatic />. For this example,  does not instrument Windows services or standalone applications.

<?xml version="1.0" encoding="utf-8"?>
<appdynamics-agent xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <controller host="mycontroller.mycompany.com" port="8090" ssl=false">
    <application name="MyDotNetApplication" />
	<account name="customer1" password="changeme" />
  </controller>
  <machine-agent />
  <app-agents>
 
    <IIS>
      <automatic />
    </IIS>
 
  </app-agents>
</appdynamics-agent>

Agent Log Files

The configuration file that controls log files for the  is located here:

%ProgramFiles%\AppDynamics\AppDynamics .NET Agent\AppDynamicsAgentLog.config

The configuration file uses NLog configuration format.