Hi,
We have 2 of the app servers on which we want to install the tomcat agent. These servers belong to the same application.
I am struggling to decide on the name to be given to the App name, Tier name, Node name and Probe name . Maybe i am still not clear on the usage of these variables in controller.xml file.
Any help is highly appreciated.
Thanks
Hi,
Application Name refers to the over all application being configured on AppD. Tier name is like a high level (or i may call) grouping of individual nodes and nodes can be individual servers, app pool or jvms.
To give you an example, if you an application name AppDynamics and you have 2 datacenters one called East and one called West, in each data center you have 10 servers, each server has single JVM application. You can set your configuration like
Application name: AppDynamics
Tier Name: East
Node Name:
For each server, Combination of JVM name and server name can be your node name (i say combination since you may have cases where in you have more than one jvm per server)
Tier Name: West
Node Name:
For each server, Combination of JVM name and server name can be your node name (i say combination since you may have cases where in you have more than one jvm per server)
The same is true for .NET application as well.
I understand that we can define the tier names, tier groups for Java application, but for .Net application i have seen it doing automatically and most of the times it sets the node name as the server name itself and doesnt name the tiers differently.
Hi Robin,
You can configure Application Name, Tier name etc for .NET as well, please see below for a sample config file that I have using for .NET.
<?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="HOST_NAME.COM" port="8090" ssl="false">
<application name="APPLICATION_NAME" />
<account name="customer1" password="password_here" />
</controller>
<machine-agent />
<app-agents>
<IIS>
<applications>
<application path="/Appname" site="AppSite">
<tier name="TIER_NAME" />
</application>
</applications>
</IIS>
</app-agents>
</appdynamics-agent>
Hi Gurmit,
Below is the scenario:
What is the best way to name the tiers in .NET application now?