Not a customer? Click the 'Start a free trial' link to begin a 30-day SaaS trial of our product and to join our community.
Existing Cisco AppDynamics customers should click the 'Sign In' button to authenticate to access the community
05-22-2018 10:30 PM
hi,
Can any one just conform me is the below xml is a valid config or not for AppDynamic
What I am trying to do here is I want to seperate my site in two diffrent AppDynamics Application, i didn't utilize Configuration Agent to configure i had just wrote xml tags and keep that config.xml file to the configuration folder location, but still i can't see any loads or metrics.
<?xml version="1.0" encoding="UTF-8"?> <appdynamics-agent xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <controller host="mycontroller.example.com" port="8080" ssl="true" enable_tls12="true"> <application name="MyDotNetApplicaition" /> <account name="xxxxxxx" password="xxxxxxxx" /> </controller> <machine-agent /> <app-agents> <IIS> <applications> <application path="/v5/Dashboard/Finance" site="Finance"> <tier name="Finance_Internal_ADPGL_Dashboard" /> </application> <application path="/v5/Finance/Finance/GPUS/DataProcess" site="Finance"> <tier name="Finance_Internal_GPUS_DataProcess" /> </application> <application path="/v5/Finance/Finance/GPUS/FileProcess" site="Finance"> <tier name="Finance_Internal_GPUS_FileProcess" /> </application> <application path="/v5/Finance/Finance/GPUS/Workflow/Services" site="Finance"> <tier name="Finance_Internal_GPUS_WorkFlow" /> </application> </applications> </IIS> </app-agents> <controller host="mycontroller.example.com" port="8080" ssl="true" enable_tls12="true"> <application name="MyApplicaition" /> <account name="xxxxxxx" password="xxxxxxxx" /> </controller> <machine-agent /> <app-agents> <IIS> <applications> <application path="/v5/Finance/Finance/MRI31/DataProcess" site="Finance"> <tier name="Finance_Internal_GPMRI31_DataProcess" /> </application> <application path="/v5/Finance/Finance/MRI31/FileProcess" site="Finance"> <tier name="Finance_Internal_GPMRI31_FileProcess" /> </application> <application path="/v5/Finance/Finance/MRI31/Workflow/Services" site="Finance"> <tier name="Finance_Internal_GPMRI31_Workflow" /> </application> </applications> </IIS> </app-agents> </appdynamics-agent>
Solved! Go to Solution.
05-24-2018 02:11 AM
HiIndrajit Kumar,
You are using the incorrect configuration. Please refer to the following document link for the correct configuration Configure Multiple Business Application Support for .NET
To map the IIS applications to different AppDynamics Business applications, you would need to use the below configuration. In the below configuration, the default business application is "MyDotNetApplicaition", so the application elements which are not having the controller-application property set then they will report to "MyDotNetApplicaition" AppDynamics business application.
The AppDynamics Agent Configuration utility does not offer this configuration option, so you would need to manually edit the config.xml file. After modifying the config.xml file, please make sure that you restarted the AppDynamics Agent Coordinator service and the IIS.
<?xml version="1.0" encoding="UTF-8"?> <appdynamics-agent xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <controller host="mycontroller.example.com" port="8080" ssl="true" enable_tls12="true"> <applications> <application name="MyDotNetApplicaition" default ="true"/> <application name="MyApplicaition"/> </applications> <account name="xxxxxxx" password="xxxxxxxx" /> </controller> <machine-agent /> <app-agents> <IIS> <applications> <application path="/v5/Dashboard/Finance" site="Finance"> <tier name="Finance_Internal_ADPGL_Dashboard" /> </application> <application path="/v5/Finance/Finance/GPUS/DataProcess" site="Finance"> <tier name="Finance_Internal_GPUS_DataProcess" /> </application> <application path="/v5/Finance/Finance/GPUS/FileProcess" site="Finance"> <tier name="Finance_Internal_GPUS_FileProcess" /> </application> <application path="/v5/Finance/Finance/GPUS/Workflow/Services" site="Finance"> <tier name="Finance_Internal_GPUS_WorkFlow" /> </application> <application path="/v5/Finance/Finance/MRI31/DataProcess" site="Finance" controller-application="MyApplicaition"> <tier name="Finance_Internal_GPMRI31_DataProcess" /> </application> <application path="/v5/Finance/Finance/MRI31/FileProcess" site="Finance" controller-application="MyApplicaition"> <tier name="Finance_Internal_GPMRI31_FileProcess" /> </application> <application path="/v5/Finance/Finance/MRI31/Workflow/Services" site="Finance" controller-application="MyApplicaition"> <tier name="Finance_Internal_GPMRI31_Workflow" /> </application> </applications> </IIS> </app-agents> </appdynamics-agent>
Thanks,
Venu.
05-24-2018 03:50 AM - edited 05-31-2018 04:50 AM
Okay.
05-24-2018 03:53 AM
05-31-2018 03:01 AM - edited 05-31-2018 04:49 AM
Thnaks.
Thank you! Your submission has been received!
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form