Related pages: |
You can create Java monitoring extensions that enable the Machine Agent and Server Visibility to collect custom metrics, which you define and provide, and report them to the Controller. This is an alternative to adding monitoring extensions using scripts.
When you capture custom metrics with a monitoring extension, they are supported by the same services that you receive for the standard metrics captured with the
application and Machine Agents. These services include automatic baselining, anomaly detection, display in the Metric Browser, availability for display on custom dashboards, and availability for use in policies to trigger alerts and other actions.
This page describes how to create a monitoring extension in Java.
To the Agent, a monitoring extension is a task that runs on a fixed schedule and collects metrics.
Before creating your own extension from scratch, review the extensions on the Cisco AppDynamics community. See GitHub for a free download of the extensions
New extensions are constantly being added. It is possible that someone has already created what you need, or something close enough, that you can download it and use it after making a few modifications.
To create a monitoring extension in Java:
monitor.xml
configuration file. See Create the monitor.xml File.<your_extension_dir>
) under <agent_home>/monitors
.monitor.xml
file (plus any dependent jar
files) in <your_extension_dir>.Enter the Controller access information and credentials. See Configure the Machine Agent.
Make sure that your |
Create a monitoring extension class by extending the AManagedMonitor
class in the com.singularity.ee.agent.systemagent.api
package. This package is included in the MachineAgent.jar
file.
The monitoring extension class performs these tasks:
MetricWriter
class. See Metric Processing Qualifier.execute()
method of the AManagedMonitor
class.See Extension_Class_Source.txt for example source code.
All custom metrics processed by the Machine Agent and Server Visibility appear in the Metric Browser > Application Infrastructure Performance. Use the "I" character to specify the path from Application Infrastructure Performance to the custom metric. If the metrics apply to a specific tier, use the metric path for the tier, with "Component" followed by a colon ":" and the tier name or tier ID.
For example to associate a metric with tier AccountService, you would specify the metric path as: Server|Component:AccountService|Custom Metrics|Path|
The metric would then appear under the tree in the Metric Browser:
You can report a custom metric only to the tier that is associated with the Machine Agent. If you attempt to publish metrics to a different tier, the metrics are not reported. |
You can insert a custom metric next to an existing type of metric. For example, the following declaration causes the custom metric named pool usage to appear next to the JMX metrics: name="Server|Component:<tier-name>|JMX|Pool|First|pool usage",value=10
You can then use the metric in health rules similar to other types of JMX metrics.
To test the appearance of your custom metric in the Controller API. post the metric data to the Machine Agent's REST API. Pass the path, name type and values of the metric as URL arguments. See Machine Agent HTTP Listener. |
Metric names must be unique within the same metric path but need not be unique for the entire metric hierarchy.
We recommend that you use short metric names so that they are visible when they are displayed in the Metric Browser.
Prepend the metric path to the metric name when you upload the metrics to the Controller.
Metric Processing QualifierThe Controller has various qualifiers for how it processes a metric regarding aggregation, time roll-up, and tier roll-up. There are three types of metric qualifiers:
You specify these options with the enumerated types provided by the MetricWriter class. Aggregation QualifierThe aggregator qualifier specifies how the Machine Agent aggregates the values reported during a one-minute period. Specify the aggregation qualifier as This value is an enumerated type. Valid values are:
Time Roll-UpThe time-rollup qualifier specifies how the Controller rolls up the values when it converts from one-minute granularity tables to 10-minute granularity tables, and 60-minute granularity tables over time.
Cluster Roll-UpThe cluster-rollup qualifier specifies how the Controller aggregates metric values in a tier.
For example, if a tier has two nodes, Node A and Node B, and Node A has three errors per minute and Node B has seven errors per minute, the INDIVIDUAL qualifier reports a value of five errors per minute and COLLECTIVE qualifier reports ten errors per minute. INDIVIDUAL is appropriate for metrics such as % CPU Busy where you want the value for each node. COLLECTIVE is appropriate for metrics such as Number of Calls where you want a value for the entire tier. |
The NGinXMonitor
class retrieves the following metrics from the Nginx Web Server, and adds them to the metrics reported by :
Active Connections:
number of active connectionsAccepts:
number of accepted requestsHandled:
number of handled requestsRequests:
total number of requestsReading:
number of readsWriting:
number of writesWaiting:
number of keep-alive connectionsThe source for the extension class is included as an attachment.
Create a monitor.xml
file with a <monitor>
element to configure how the Machine Agent executes the extension.
<name>
to the name of your Java monitoring extension class.<type>
to managed
.<execution-style>
can be continuous
or periodic
.
Periodic means to invoke the monitor at a specified frequency. In periodic execution, the Machine Agent invokes the extension, runs it briefly, and returns the data on the schedule set by the <execution-frequency-in-seconds>
element.
Do not set the < |
periodic
for the execution style, set the frequency of collection in <execution-frequency-in-seconds>
element. The default frequency is 60 seconds. continuous
, this setting is ignored.<type>
in the <monitor-run-task>
child element to java
.<execution-timeout-in-secs>
to the number of seconds before the extension times out.Specify any task arguments required by the Java-based extension in the <task-arguments>
element. The argument tag has three parameters: name
, default-value
, and is_required
. is_required
is always set to true. The task arguments can be any custom argument. The default arguments that are specified here are the only arguments that the extension uses. They are not set anywhere else.
Example <task-arguments>
element:
<argument name="password" is-required="true" default-value="welcome" /> |
<classpath>
to the jar
file that contains your extension's classes. Include any dependent jar
files, separated by semicolons.<impl-class>
to the full path of the class that the Machine Agent invokes.This attached monitor.xml file configures the NGinXMonitor monitoring extension. This extension executes every 60 seconds.
This attached monitor.xml file configures the MysqlMonitor. This monitor executes every 60 seconds, has four required task arguments and one optional task argument and one dependent jar
file.