最小限の config.xml のサンプル

最も基本的な構成によって、エージェント構成に必須のセクションがわかります。この例では、automatic エレメント( <automatic />)を使用してすべての IIS アプリケーションをインストゥルメント化します。この例の場合、Splunk AppDynamics は Windows サービスやスタンドアロン アプリケーションをインストゥルメント化しません。

<?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>