Using the Machine Agent, you can supplement the existing metrics in the AppDynamics Controller UI with your own custom metrics. There are many extensions currently available on the Cisco DevNet site. Some are created by AppDynamics and some have been created by users.

Like built-in metrics, your custom metrics are subject to the following AppDynamics features:  

  • automatic baselines and anomaly detection 
  • availability for display on custom dashboards

  • availability for use in policies
  • visibility of all metrics in the Metric Browser and on the Infrastructure tab, where you can display external metrics along with AppDynamics metrics on the same graph

Add New Custom Metrics

To create custom metrics, you create a monitoring extension. In your extension, you define the name and path of your metric (where it appears in the metric browser tree), what type of metric it is (sum, average, and so on), and how the data for the metric should be rolled up as it ages. One agent can run many extensions, although you may need to increase the amount of memory for the agent JVM if you do. You can even have multiple copies of the same extension if they are in different directories.

A custom metric can be common across nodes or associated with a specific tier. When you create a metric, you specify the path in which it will appear in the metric tree. To make a common custom metric, use the root tree path Custom Metrics in your metric declaration. To make a tier-specific metric, specify the metric path associated with that component. For details, see the topics on creating Java or script-based custom metrics listed below.   

If your application uses a large number of AppDynamics extensions with the Machine Agent, you might need to increase the size of the memory allocation as follows:

For Linux and Unix-like systems

% <machine_agent_home>/bin/machine-agent -Xms64m
CODE

For Windows

> <machine_agent_home>\bin\machine-agent.cmd -Xms64m
CODE

Types of Monitoring Extensions

You can implement custom metrics using the following mechanisms.  

  • Using a script:
    You can write a shell script (Linux and Unix-like systems) or batch file (Windows) to report custom metrics every minute to the Machine Agent. The Machine Agent passes these metrics on to the Controller. 
    For more information, see Build a Monitoring Extension Using Scripts
  • Using Java:
    Your custom metrics might be too complicated to collect using a script. For example, you might need to perform complex calculations or call a third-party API to get the metrics. In this case, you can extend the JavaServersMonitor class to collect the metrics and report them to the Machine Agent. Your Java program extends the JavaServersMonitor class to provide your custom functionality. 
    See Build a Monitoring Extension Using Java.
  • Using HTTP:
    If you enable the agent HTTP listener, you can post HTTP requests to the Machine Agent to send it custom metrics every minute. This is done by starting the Standalone Machine Agent with a Jetty HTTP listener. 
    See Machine Agent HTTP Listener for information on starting the HTTP listener and sending it metrics.