Administration Console Online Help

Previous Next Open TOC in new window
Content starts here

Spring Monitor: Application Context

Column Display     Configuration Options     Related Tasks     Related Topics

This page shows statistics for an application context and the bean factory it contains. Statistics are shown for each scope in the bean factory. Not all applications will have beans in each scope.

Statistics are broken down by the method used to get the beans from the application context. Bean creation statistics are broken down by bean scope.

Configuration Options

Name Description
Refresh Count

The number of refreshes performed

MBean Attribute:
SpringApplicationContextRuntimeMBean.RefreshCount

Average Refresh Time

This returns the average elapsed time in milliseconds required to perform a refresh

MBean Attribute:
SpringApplicationContextRuntimeMBean.AverageRefreshTime

Get Bean Count

The number of times getBean() was called

MBean Attribute:
SpringApplicationContextRuntimeMBean.GetBeanCount

Average Get Bean Time

This returns the average elapsed time in milliseconds required for getBean()

MBean Attribute:
SpringApplicationContextRuntimeMBean.AverageGetBeanTime

Get Beans Of Type Count

The number of times getBeansOfType() was called

MBean Attribute:
SpringApplicationContextRuntimeMBean.GetBeansOfTypeCount

Average Get Beans Of Type Time

This returns the average elapsed time in milliseconds required for getBeansOfType()

MBean Attribute:
SpringApplicationContextRuntimeMBean.AverageGetBeansOfTypeTime

Get Bean Names For Type Count

The number of times getBeanNamesForType() was called

MBean Attribute:
SpringApplicationContextRuntimeMBean.GetBeanNamesForTypeCount

Average Get Bean Names For Type Time

This returns the average elapsed time in milliseconds required for getBeanNamesForType()

MBean Attribute:
SpringApplicationContextRuntimeMBean.AverageGetBeanNamesForTypeTime

Column Display

Name Description
Scope

The name of the scope.

Beans Created

The number of beans created using the named scope.

Average Creation Time

The average time it took to create the beans of the named scope.

Related Tasks

Related Topics


Back to Top