Discussion Feed
01-20-2019
08:41 PM
1 Kudo
Hi Kadu,
Thanks for posting the question on the Community.
Application deletion API exists, and this needs authorization token retrieval first, so could you try these lines of execution? Caution to pass only your target application ID in <application_ID>.
curl -s -c cookie.appd --user <username>@<customer name>:<password> -X GET "http://<url>:<port>/ controller/auth?action=login"
X_CSRF_TOKEN="$(grep X-CSRF-TOKEN cookie.appd|rev|cut -d$'\t' -f1|rev)"
X_CSRF_TOKEN_HEADER=$([ -n "$X_CSRF_TOKEN" ] && echo "X-CSRF-TOKEN:$X_CSRF_TOKEN" || echo '')
curl -X POST <url>:<port>/controller/ restui/allApplications/ deleteApplication -H "Content-Type: application/json;charset=UTF- 8" --data "<application_ID>" -b cookie.appd -H "$X_CSRF_TOKEN_HEADER"
Please run these queries by the user who has delete permissions on your applications.
Let me know if this helped you.
Many thanks,
Naoto
... View more
01-18-2019
05:38 AM
1 Kudo
Hi Ram,
Thanks for posting the question on the Community.
Could you try to telnet to your SaaS controller from the machine in which you want to install the agent? It seems to be a connectivity error happening.
telnet chaplin201812280309369.saas.appdynamics.com 443
If there is no response from the controller, then the problem is network connectivity, so please check the firewall configuration.
Let me know if this helped you.
... View more
01-18-2019
05:31 AM
1 Kudo
Hi Srinivas,
Thanks for posting the question on the Community.
Could you try to remove the 'agent-runtime-dir' xml tag from the agent controller-info.xml file, and restart the agent to check the results?
If it does not work, could you try to put below jvm option to see the results?
-Dappdynamics.agent.runtime.dir
Also, could you share your machine agent version?
Let me know if this helped you.
Many thanks,
Naoto
... View more
01-17-2019
10:03 PM
1 Kudo
Hi Udaya,
Thanks for posting the question on the Community.
You can use this official docker image repo for your use case. Please follow the steps in README.
If you have any problem further, let me know.
Many thanks,
Naoto
... View more
01-17-2019
09:11 PM
2 Kudos
Hi Amol,
Thanks for posting the question on the Community.
I am sorry to say that this is a known bug for 4.5.x machine agent.
I will keep the progress information updated here in that case.
As the work around, could you try to add below option in machine agent command?
-Dappdynamics.agent.log4j2.disabled=true
If it does not work, could you try to use 4.4.X version machine agent?
Let me know if this helped you.
Many thanks,
Naoto
... View more
01-17-2019
07:13 PM
1 Kudo
Hi Vijay, Good to know agent started correctly.
Could you try to add option “-XX:-UseSplitVerifier” in your Tomcat and restart your application? If it does not work still, then could you share whole logs? Let me know if this helped you.
Many thanks,
Naoto
... View more
01-17-2019
07:10 PM
1 Kudo
Hi Alexander,
It seems that mysql connector driver version is old one, so could you replace that with the latest one by the following steps?
In <DB agent directory>/lib, please back up mysql-connector-<version>.jar file
Download the latest mysql-connector JAR file from MySQL official site, selecting “Platform Independent”
Copy mysql-connector-<new version>.jar file to <DB agent directory>/lib.
Restart DB agent
Let me know if this helped you. Many thanks,
Naoto
... View more
01-16-2019
04:58 PM
1 Kudo
Hi Mustafa,
Thanks for contacting support.
You can achieve correlation in C++ by adding some codes in your application as described in this SDK link , Correlate with Other Business Transactions section.
Basically, to instrument C++ code, you need to inject small codes into your application source manually.
Therefore, adding such correlation is also manual, and is similar way to instrument your application.
On the other hand, Java/.Net application instrumentation does not need source code changes, and correlation is basically automatic.
Your indicated document is for the case that cannot be done automatically.
Let me know if this helped you.
Many thanks,
Naoto
... View more
01-15-2019
11:39 PM
1 Kudo
Hi Vijay,
Thanks for contacting support.
It seems that you missed the node name in your agent configuration.
Could you check your configuration in <agent dir>/conf/controller-info.xml, node-name tag?
Let me know if this helped you.
Many thanks,
Naoto
... View more
01-15-2019
06:04 PM
1 Kudo
Hi Alexander,
Thanks for posting the question on the Community.
It seems that this is caused by character set conflicts between DB collector and DB.
Could you try below to solve this issue?
Go to DB collector configuration by clicking “Databases”->”Configuration”->”Collectors”->double click your target DB collector.
In “Custom JDBC Connection String” column, put “jdbc:mysql://<hostname>:<port>/<dbname>?characterEncoding=latin1”. Please ensure you replace with your real DB information to hostname, port, and dbname.
After this executed, could you check its working, and share the log with us?
Let me know if this helped you.
Many thanks,
Naoto
... View more
Latest Activity
- Kudoed Re: Is it possible to use data collector to monitor Angular 6? for Mika.Sasaki. 02-05-2020 05:04 PM
- Got a Kudo for Re: java.sql.SQLException: Unknown initial character set index '255' received from server.. 02-13-2019 10:35 AM
- Got a Kudo for Re: Cannot Start Machine Agent. 02-12-2019 05:58 PM
- Got a Kudo for Re: Importing custom transaction detection rules. 01-28-2019 03:00 PM
- Got a Kudo for Re: Machine agent is reporting in 2 application. 01-28-2019 02:34 PM
- Got a Kudo for Re: Delete application by API. 01-22-2019 09:41 AM
- Posted Re: Delete application by API on Controller (SaaS, On Premise). 01-20-2019 08:41 PM
- Got a Kudo for Re: SSL keystore JKS for trial version SaaS agents. 01-18-2019 10:52 AM
- Got a Kudo for Re: Cannot Start Machine Agent. 01-18-2019 09:57 AM
- Got a Kudo for Re: Profile docker based java application. 01-18-2019 09:33 AM
- Got a Kudo for Re: Getting the Unrecognized field "agent-runtime-dir" (class com.appdynamics.agent.sim.configuration.bootstrap.DefaultBootstrapConfiguration) error. 01-18-2019 09:33 AM
- Got a Kudo for Re: Troubleshoot Java agent installation on Amazon EC2 instance with Tomcat server. 01-18-2019 09:29 AM
- Got a Kudo for Re: Troubleshoot Java agent installation on Amazon EC2 instance with Tomcat server. 01-18-2019 09:29 AM
- Posted Re: SSL keystore JKS for trial version SaaS agents on Licensing (including Trial). 01-18-2019 05:38 AM
- Posted Re: Getting the Unrecognized field "agent-runtime-dir" (class com.appdynamics.agent.sim.configuration.bootstrap.DefaultBootstrapConfiguration) error on Java (Java Agent, Installation, JVM, and Controller Installation). 01-18-2019 05:31 AM
- Posted Re: Profile docker based java application on Java (Java Agent, Installation, JVM, and Controller Installation). 01-17-2019 10:03 PM
- Posted Re: Cannot Start Machine Agent on Controller (SaaS, On Premise). 01-17-2019 09:11 PM
- Kudoed Cannot Start Machine Agent for Amol.Mittal. 01-17-2019 09:11 PM
- Posted Re: Troubleshoot Java agent installation on Amazon EC2 instance with Tomcat server on Java (Java Agent, Installation, JVM, and Controller Installation). 01-17-2019 07:13 PM
- Posted Re: java.sql.SQLException: Unknown initial character set index '255' received from server. on Java (Java Agent, Installation, JVM, and Controller Installation). 01-17-2019 07:10 PM
Community Stats
Date Registered | 12-02-2018 11:54 PM |
Date Last Visited | 01-02-2021 07:39 PM |
Total Messages Posted | 18 |
Total Kudos Received | 16 |