Table of Contents |
---|
Business metrics capture data from a method's parameters or return values to report on the performance of the business.
...
Business metrics can be accessed from the AppDynamics REST API, just like any other metric. See Use the AppDynamics REST API#To To Copy the REST URL for a Metric.
...
Exceptions are expensive to create even in modern JVMs. If a particular exception is ignored but still happens often, it can contribute to a CPU spike in the JVMs. The metrics for ignored errors can provide insights into such situations.
Example
Code Block |
---|
{
// AppDynamics Exit Point interceptor is applied on this method, so we will automatically track this exception
service.connect(URL);
}
catch(ServiceException sEx)
{
service.connect(backupURL);
}
|
...