Data Analysis

This view is useful when you want to analyze your collected method invocations. There are only two fields that need to be fill out. You must specify both the date range and the application. Then, the analysis will be performed for those method invocations which ended within the specified time range and came from the specified application.

Duration Distribution

The first part of the analysis presents the methods duration distribution with respect to percentiles. The chart below presents a sample analysis result.

Plot

The Plot tab presents a methods overall duration distribution. The analysis is performed for all methods invocations within the time range specified in the data analysis form.

The chart is divided into percentile sections. The percentile values are located on the x-axis. The left y-axis presents the method duration value, while the right one the number of method invocations. Each percentile section has a bar which represents the number of method invocations within the percentile interval. The blue curve represents the methods duration.

To properly read the chart, you need to focus on the percentile axis (x-axis). Note, the x-axis is not scaled linearly. Suppose now, we have the analysis results as the one above in the picture. We interpret the chart at 96.881th percentile as follows:

  • 96.881 percent of all invocations execute below 233 ms.

  • there are about 8300 invocations whose duration is between 170 and 233 ms.

Note, 170 ms is taken from the previous percentile, which is 93.757 in this case.

It is easy to see, in the sample case, that the number of methods invocations decreases rapidly as percentile grows. There are only a few outliers, whose duration is above a minute. It is up to a user whether a further analysis is required or not. If a more detailed investigation is needed a user can proceed with the analysis by pressing the Temporal analysis button.

Summary

The Summary tab allows a user to compare the analysis results to the data from previous periods. This time a few specific percentiles are selected to compare them with the ones from previous periods.

There are three special columns, in both Duration and Count columns. These columns are denoted as 1d, 3d and 1w which mean 1 day, 3 days and 1 week respectively. They contain the corresponding changes of percentile values one day ago, three days ago and one week ago respectively with respect to the current values. In order to retrieve the values you need to click the refresh button in the selected column header. The values are then compared with the current ones within the corresponding time range but from previous days.

For example, if you want to compare the current results with the ones from 3 days ago, just click the refresh button in the 3d column header. If the current duration value is less than three days ago, the value change is displayed in green, otherwise it is displayed in red. In the picture above, one can easily see that the current duration value for the 75th percentile is 63 ms. This result is 17 ms less than three days ago. Moreover, currently we have 200,639 invocations, while three days ago there were 40,038 less invocations.

The percentile value in the fourth row is customizable. It can be changed by selecting one of the available values in the Custom percentile buttons group.

Temporal Analysis

This part of the analysis presents how the percentile values change in time for the specified period. There are two tabs with the results. The first one Values presents how the percentile values change in time. Just like in the duration distribution there are bars and curves. The bars represent the amounts of invocations in time periods. The curves present the percentile values of duration. There are four percentiles curves that can be displayed simultaneously, i.e. 25th, 50th, 75th and 9*th. The last one is customizable and can be changed in the Highest percentile option.

The second tab Sections presents how many invocations are in each percentile.

If you want to know what methods are reported in a selected interval, just move your mouse over one of the percentile curves and click the curve.

2D Analysis

The 2D analysis is represented in a form of a heatmap chart. The chart presents a distribution of one of the selected Data type with respect to both duration (vertical axis) and time (horizontal axis). The chart is divided into cells, which aggregate data for particular ranges of duration and time. For Count data type, each cell represents a number of invocations within the cell range. For Off-Cpu data type, each cell represents a percentage of method invocations, whose off-cpu time is the largest. For Exceptions data type, each cell represents a number of methods that throw exceptions.

You can change the number of cells the chart is divided into, by selecting one of the Resolution value. You can also change the range of methods that are analyzed by selecting one of the Precentile values. For example, if the Percentile value is 50, it means that the chart shows only those method invocations whose duration value is below the value at 50th percentile.

Exceptions

This view presents top ten root exceptions thrown by methods.

Last updated