Quantcast
Channel: All AppDynamics Discussions posts
Viewing all 1667 articles
Browse latest View live

Re: Need help to configure new DB collector for DB monitoring

$
0
0

Hi,

 

Check if evemt services are running ?

 

 

Thanks


Re: Node.js agent installing on Linux - status 403

Re: Need help to configure new DB collector for DB monitoring

$
0
0

Thanks for quick reply! I dont hae DB monitoring license. 

Monitoring Coreos,Postgres and nginx

$
0
0

Hi,

 

We undergoing project testing with core os and docker container running Nginx and Postgres server.

I need help regarding Complete Monitoring tools for above requirements matching core os based installation steps.

Re: Need help to configure new DB collector for DB monitoring

$
0
0

That's then the reason why you cannot create a DB ;)

JB

How To Automate The Setup of the AppDynamics Server?

$
0
0

Hi Guys,

 

I downloaded the AppDynamics Pro trial today and the installer seems to be a 900mb bash script that prompts a number of times for input.

 

My Questions :

 

How do I automate the installation of this setup?

 

Is it possible to pass an answer file, or load a config?

 

Is there a docker container I can quickly download and start to check out AppDynamics functionality?

 

Is it even possible to run the AppDynamics server in a docker container?

 

Regards Alex

 

Re: Can Appdynamics monitor ruby on rails

$
0
0

Is this still the case?

Can AppDynamics yet monitor Ruby Applications? ( it has been over a year since the initial comment)

If not, is there any plan for Ruby applications to recieve monitoring form AppDynamics?

And could anyone please suggest any ways to monitor a Ruby Application, and if possible send the metrics to AppDynamics for Visualisation.

Thanks

Getting ERROR 400: Time range type is not specified.


Basic process to setup machine agent on Amazon aws EC2 Linux micro

$
0
0

Hello all -

 

New user testing out Appdynamics for the first time. I'm running a t2.micro with all ports open. I'm not seeing anything on the dashboard.

 

Steps I took...

 

I've downloaded the machine agent to the server, unziped it and configured the controller-info.xml file as such...

 

<controller-host>[MYAPPD_ACCOUNTNAME].saas.appdynamics.com</controller-host>

<controller-port>8181</controller-port>

<controller-ssl-enabled>true</controller-ssl-enabled>

<account-name>[MYAPPD_ACCOUNTNAME]</account-name>

<account-access-key>[MYAPPD_ACCESSKEY]</account-access-key>

<application-name>AWS</application-name>

<tier-name>EC2</tier-name>

<node-name>apm4</node-name>

<force-agent-registration>false</force-agent-registration>

<machine-path></machine-path>

 

Question:

Since the url is HTTPS I used 8181 and true for SSL. But, do I need anything on a standard-out-of-the-box t2.micro for SSL comunications?

 

I'm seeing this in the log file:

WARN RegistrationTask - Encountered error during registration. Will retry in 60 seconds.

 

and

 

feign.RetryableException: Connect to [MYAPPD_ACCOUNTNAME].saas.appdynamics.com:8181 [na16.saas.appdynamics.com/198.169.195.55] failed: connect timed out executing POST http://[MYAPPD_ACCOUNTNAME].saas.appdynamics.com:8181/controller/sim

 

Why 198.169.195.55 vs the public IP assigned to my EC2 server? 

 

and a lot of this:

 

at feign.FeignException.errorExecuting(FeignException.java:66)

at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:97)

at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:71)

at feign.ReflectiveFeign$FeignInvocationHandler.invoke(ReflectiveFeign.java:94)

at com.sun.proxy.$Proxy70.registerMachine(Unknown Source)

at com.appdynamics.agent.sim.registration.RegistrationTask.run(RegistrationTask.java:102)

at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)

at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178)

at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)

at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)

at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)

at java.lang.Thread.run(Thread.java:745)

 

What am I missing? I was unable to find anything that walks through basic steps specifically for EC2 servers leading me to think that there isn't anything special.

 

Thanks for the help

Kevin

 

Re: Support for Android Gradle plugin 1.5

[HELP] Tracking Dynamic Business Transactions

$
0
0

Hello all,

 

 

We are in a situation where we have a 

 

Request that starts out as a REST --> goes through a node --> Comes out as a SOAP request.

 

Is Appdynamics capable of correlating the SOAP request to the original REST request? 

 

If so, how does it do this? Does AppDynamics handle this automatically? Special identifiers that are automatically added by AppDynamics?

 

All help/ suggestions welcome.

 

Cheers! 

 

AppDynamics ECommerce Demo Setup Guide

$
0
0

Hi ,

 

Does anyone has the steps on what's require and steps to install and setup ECommerce-Demo ?

Best practice to decide the Tier Name , Node name and Probe name

$
0
0

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

Java Mail Send - Transaction Flow Map

$
0
0

Hello There,

 

I have a scenario where a user accessing a report and clicking on the send as email in an application.

 

I am able to see the request details in the transactions flow map.

 

But what i see there is 2 Mail Server Backends in the Transaction Flow Map.

 

I have verified that the email is sent only once and also to a one specific email backend.

 

Please help me to understand why it is showing as 2 Mail Server Backends.

 

 

Untitled.png

   Below is the code that I am using to send email.

   

// File Name SendEmail.java

import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;

public class SendEmail
{
   public static void main(String [] args)
   {    
      // Recipient's email ID needs to be mentioned.
      String to = "abcd@gmail.com";

      // Sender's email ID needs to be mentioned
      String from = "web@gmail.com";

      // Assuming you are sending email from localhost
      String host = "localhost";

      // Get system properties
      Properties properties = System.getProperties();

      // Setup mail server
      properties.setProperty("mail.smtp.host", host);

      // Get the default Session object.
      Session session = Session.getDefaultInstance(properties);

      try{
         // Create a default MimeMessage object.
         MimeMessage message = new MimeMessage(session);

         // Set From: header field of the header.
         message.setFrom(new InternetAddress(from));

         // Set To: header field of the header.
         message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));

         // Set Subject: header field
         message.setSubject("This is the Subject Line!");

         // Now set the actual message
         message.setText("This is actual message");

         // Send message
         Transport.send(message);
         System.out.println("Sent message successfully....");
      }catch (MessagingException mex) {
         mex.printStackTrace();
      }
   }
}

 

Thanks.

 

 

java.lang.ClassNotFoundException : Error with Oraccle WebLogic

$
0
0

Hello,

 

I instrumented Oracle weblogic app server but I am getting the following error. I am using AppDynamics 4.2.0.2 controller and agent version;

 

 

Java HotSpot(TM) 64-Bit Server VM warning: PICL (libpicl.so.1) is missing. Performance will not be optimal.

Java HotSpot(TM) 64-Bit Server VM warning: PICL (libpicl.so.1) is missing. Performance will not be optimal.

Install Directory resolved to[/u01/AppServerAgent]

java.lang.ClassNotFoundException: com.singularity.ee.agent.appagent.kernel.AppTierNodeDeterminer

        at java.net.URLClassLoader$1.run(URLClassLoader.java:366)

        at java.net.URLClassLoader$1.run(URLClassLoader.java:355)

        at java.security.AccessController.doPrivileged(Native Method)

        at java.net.URLClassLoader.findClass(URLClassLoader.java:354)

        at java.lang.ClassLoader.loadClass(ClassLoader.java:425)

        at java.lang.ClassLoader.loadClass(ClassLoader.java:358)

        at com.singularity.ee.agent.appagent.AgentEntryPoint.getAppTierNodeFromLib(AgentEntryPoint.java:1167)

        at com.singularity.ee.agent.appagent.AgentEntryPoint.determineAppAgentVersionToUse(AgentEntryPoint.java:990)

        at com.singularity.ee.agent.appagent.AgentEntryPoint.premain(AgentEntryPoint.java:331)

        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

        at java.lang.reflect.Method.invoke(Method.java:606)

        at sun.instrument.InstrumentationImpl.loadClassAndStartAgent(InstrumentationImpl.java:382)

        at sun.instrument.InstrumentationImpl.loadClassAndCallPremain(InstrumentationImpl.java:397)

Unable to locate appagent version to use - Java agent disabled

 

Any idea on what could be wrong


Re: java.lang.ClassNotFoundException : Error with Oraccle WebLogic

$
0
0

Just to add, the base operating system is Sun solaris

Re: POJO Monitoring - should I configure a Business Transaction or Service Endpoint?

Re: POJO Instrumentation for private methods

Custom Dashboard - Generate PDF

$
0
0

Hi All,

 

 I have created the custom dashboards in Appdynamics and I need to generate the dashboard in pdf format.Please let me know how to generate it.

 

regards,
Aswin

Re: Custom Dashboard - Generate PDF

Viewing all 1667 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>