Questions tagged [appdynamics]

AppDynamics is application performance management software designed to help dev and ops troubleshoot problems in complex production apps.

General tag for the application performance management tool used by many companies to analyze their web applications for issues. Monitors the App Servers, the Application the Database connection and provides graphs.

185 questions
129
votes
6 answers

How do I use basic HTTP authentication with the Python Requests library?

I'm trying to use basic HTTP authentication in Python. I am using the Requests library: auth = requests.post('http://' + hostname, auth=HTTPBasicAuth(user, password)) request = requests.get('http://' + hostname + '/rest/applications') Response form…
oleksii
  • 1,367
  • 2
  • 10
  • 11
7
votes
1 answer

Performance drop upgrading from Hazelcast 2.5 to 3+

Because of a known (fixed) bug in Hazelcast 2.5 we've decided this would be the next upgrade candidate for our project. But after dropping in the latest version (3.2.2) we had horrible performance. The way we are using Hazelcast: Two nodes Multiple…
Roy van Rijn
  • 840
  • 7
  • 17
6
votes
3 answers

Can the OS stop a Java process from garbage collecting?

I'm monitoring a production system with AppDynamics and we just had the system slow to a crawl and almost freeze up. Just prior to this event, AppDynamics is showing all GC activity (minor and major alike) flatline for several minutes...and then…
user1768830
6
votes
5 answers

Will AppDynamics (Performance Monitoring Tool) slow down my Production Application?

Is it ok to deploy Performance Monitoring Tool - AppDynamics - in Production? The application to be monitored is a standard Java/J2EE Web Application. I have never worked with AppDynamics, and my concern is that it may actually slow down my…
Jasper
  • 8,440
  • 31
  • 92
  • 133
4
votes
2 answers

AppDynamics or NewRelic kind of system - how does it work?

How do you build a AppDynamic or New Relic kind of system that collects performance metrics of your application including detailed call tree stats by merely installing a software on the servers where your application runs? Is it even possible to…
govin
  • 6,445
  • 5
  • 43
  • 56
3
votes
0 answers

AppDynamics Serverless APM for Lambda. Auto instrument docker layer extension. Python app. Error = Extension.Crash

I'm trying to implement APM Serverless for AWS Lambda in a Python function. The function is deployed via a container image, so the extension is built as a layer in the Dockerfile. Firstly, in case someone is trying to auto instrument this process;…
Arehandoro
  • 267
  • 1
  • 2
  • 11
3
votes
1 answer

Appdynamics problems to install in jboss app server

I followed the instructions on the website of appdynamic, but when I was following this step: When I ran standalone.bat this error appears: java.lang.NoClassDefFoundError: org/wildfly/common/net/HostName at…
anonz
  • 41
  • 1
3
votes
2 answers

How to assign cluster, namespace and pod name in kubernetes yaml file's environment variable

I have a requirement to pass cluster, namespace and pod name to AppDynamics agent from my container deployed in Kubernetes cluster. I tried something as below, but that does not work. containers: - env: - name: JAVA_OPTS …
3
votes
1 answer

Memory leak - promises in a loop

My node app's CPU usage is gradually increasing. I have found that memory leaks are happening. Through AppDynamics, I have found that there is a significant amount of retained memory which keeps increasing over time under processImmediate call tree.…
chaithu
  • 509
  • 2
  • 7
  • 29
3
votes
1 answer

Appdynamics implementation

I'm trying to add Appdynamics into my application, I'm doing those steps: https://docs.appdynamics.com/display/PRO40/Instrument+an+Android+Application#InstrumentanAndroidApplication-ToaddtheAppDynamicsAndroidagentrepositorytoyourproject but after…
falsetto
  • 789
  • 2
  • 11
  • 35
3
votes
0 answers

Constructing a WeakReference throws COMException

The following code: IDisposable d = ... new WeakReference(d); Has started throwing the following exception on SOME machines. What could cause this? System.Runtime.InteropServices.COMException: Unspecified error (Exception from HRESULT:…
ChaseMedallion
  • 20,860
  • 17
  • 88
  • 152
2
votes
1 answer

Exception in plugin AppDynamics Android Agent Installer 1.1.38

I am unable to install the plugin AppDynamics Android Agent Installer from the marketplace of android studio. I'm getting below exception stack trace. java.lang.NoClassDefFoundError: com/android/tools/idea/gradle/parser/GradleBuildFile at…
Ashish Kudale
  • 1,230
  • 1
  • 27
  • 51
2
votes
2 answers

Is there any OpenTelemetry exporter for Appdynamics?

I am doing some proof of concept to ingest traces and metrics to AppDynamics without installing Appdynamics agent. I have an application emitting prometheus metrics and traces. I could not find any Appdynamics documentation talking about…
Mac
  • 497
  • 5
  • 22
2
votes
1 answer

Bundle React/Node.js docker container with Appdynamics using Webpack throws error

I have react app using webpack. Building a docker image out of it is failing. It is failing because appdynamics package. I am getting the error only during docker build and npm run build seems to work fine without any issues. Environment: React…
kvp2982
  • 151
  • 5
2
votes
1 answer

How to create a dashboard in Appdynamics based on specific REST URLs of one endpoint

I have a Spring application monitored by Appdynamics. This application has a Service Endpoint recognized by Appdynamics, named lets say: /general/endpoint Now within the application there are multiple endpoints…
Johannes Krämer
  • 317
  • 1
  • 3
  • 13
1
2 3
12 13