Hi @Ryan.Paredez , Thank you for the reply ! Unfortunately, the documentation you sent to me does not help me to solve the issue. In the first place, I thought that my Tier names were wrongly valued because of the '-' symbol. But after renaming the Tier without any '-' symbol, I still get the error. In the notification section, I have a lot of Unknown Events. Is there any way to get more details of those unknown events ? After using AppDynamics C++ context for each tier (and calling appd_bt_begin_with_app_context), it seems that the AppDynamics controller is not able to identify the business transaction. If I remove all appd_bt_begin_with_app_context calls, I get a result with all backend grouping under the same remote icon in the dashboard flow map and the business transaction is correctly recognized by the controller. This seems to work pretty well and I am not getting any errors. However, I am not very satisfied with the flow map because I don't want all of my tiers to be displayed as a remote backend server under one icon. I add here the code I use to add appd context for each tier. The context name is just a concatenation of application, tier and node name. if (ms_appdContexts.count(contextName)) // ms_appdContexts is a set of string
return;
appd_context_config* lcp_cfg = appd_context_config_init(contextName);
appd_context_config_set_app_name(lcp_cfg, applicationName);
appd_context_config_set_tier_name(lcp_cfg, tierName);
appd_context_config_set_node_name(lcp_cfg, nodeName);
appd_context_config_set_controller_host(lcp_cfg, cfg->appdControllerHost());
appd_context_config_set_controller_port(lcp_cfg, cfg->appdControllerPort());
appd_context_config_set_controller_account(lcp_cfg, cfg->appdControllerAccount());
appd_context_config_set_controller_access_key(lcp_cfg, cfg->appdControllerAccessKey());
if (cfg->appdControllerUseSsl())
appd_context_config_set_controller_use_ssl(lcp_cfg, 1);
appd_sdk_add_app_context(lcp_cfg);
ms_appdContexts.insert(contextName); I do not think that this part of the code is the problem as it is pretty much a copy-paste of the AppD C++ SDK example. In the log file of each agent being launched, I don't see any specific error. The tier name is what I expected and the connection is established. So I am a little bit lost. I don't know which part of my code produced the error. Is it allowed to call the appd_bt_begin_with_app_context right after appd_exitcall_begin in the same code ? Is the method appd_sdk_add_app_context a synchronous call ? Best regards, Freddy CHUNG
... View more