Administration Console Online Help

Previous Next Open TOC in new window
Content starts here

EJB: Monitoring: Singleton EJBs

Buttons     Column Display     Related Tasks     Related Topics

This page displays a variety of statistics about the state and performance of the singleton session EJB. Use the runtime information for tuning and debugging the EJB.

Buttons

Name Description
Refresh icon

Refresh iconCauses the Administration Console to periodically poll the resource monitored by this page and refresh the display.

Column Display

You can show fewer or additional data points on this page by expanding Customize this table and modifying the Column Display list. Each data point displays in its own table column.

The following table lists all of the data points that you can display in columns on this page.

Name Description
Machine

The WebLogic Server host computer (machine) on which this server is meant to run.

If you want to use Node Manager to start this server, you must assign the server to a machine and you must configure the machine for Node Manager.

You cannot change this value if a server instance is already running.

MBean Attribute:
ServerMBean.Machine

Changes take effect after you redeploy the module or restart the server.

Server

An alphanumeric name for this server instance. (Spaces are not valid.)

The name must be unique for all configuration objects in the domain. Within a domain, each server, machine, cluster, JDBC connection pool, virtual host, and any other resource type must be named uniquely and must not use the same name as the domain.

The server name is not used as part of the URL for applications that are deployed on the server. It is for your identification purposes only. The server name displays in the Administration Console, and if you use WebLogic Server command-line utilities or APIs, you use this name to identify the server.

After you have created a server, you cannot change its name. Instead, clone the server and provide a new name for the clone.

MBean Attribute:
ServerMBean.Name

Changes take effect after you redeploy the module or restart the server.

Application Name

The name of the Enterprise application.

MBean Attribute:
ApplicationRuntimeMBean.ApplicationName

EJB Name

Provides the name for this EJB as defined in the javax.ejb.EJB annotation, or the ejb-name when * using the ejb-jar.xml deployment descriptor.

MBean Attribute:
SingletonEJBRuntimeMBean.EJBName

Read Locks

Provides the total count of read locks requested since deployment; -1 will be returned if bean-managed concurrency is in use.

MBean Attribute:
SingletonEJBRuntimeMBean.ReadLockTotalCount

Write Locks

Provides the total count of write locks requested since deployment; -1 will be returned if bean-managed concurrency is in use.

MBean Attribute:
SingletonEJBRuntimeMBean.WriteLockTotalCount

Read Lock Timeouts

Provides the count of read lock requests that have timed out since deployment; -1 will be returned if bean-managed concurrency is in use.

MBean Attribute:
SingletonEJBRuntimeMBean.ReadLockTimeoutTotalCount

Write Lock Timeouts

Provides the count of write lock requests that have timed out since deployment; -1 will be returned if bean-managed concurrency is in use.

MBean Attribute:
SingletonEJBRuntimeMBean.WriteLockTimeoutTotalCount

Waiters

Provides the total count of threads waiting for the lock; -1 will be returned if bean-managed concurrency is in use.

MBean Attribute:
SingletonEJBRuntimeMBean.WaiterCurrentCount

Timeout Count

Provides the total number of successful timeout notifications that have been made for this EJB.

MBean Attribute:
EJBTimerRuntimeMBean.TimeoutCount

Cancelled Timers

Provides the total number of timers that have been explicitly cancelled for this EJB.

MBean Attribute:
EJBTimerRuntimeMBean.CancelledTimerCount

Active Timers

Provides the current number of active timers for this EJB

MBean Attribute:
EJBTimerRuntimeMBean.ActiveTimerCount

Disabled Timers

Provides the current number of timers temporarily disabled for this EJB

MBean Attribute:
EJBTimerRuntimeMBean.DisabledTimerCount

Committed Transactions

Provides a count of the total number of transactions that have been committed for this EJB.

MBean Attribute:
EJBTransactionRuntimeMBean.TransactionsCommittedTotalCount

Rolled Back Transactions

Provides a count of the total number of transactions that have been rolled back for this EJB.

MBean Attribute:
EJBTransactionRuntimeMBean.TransactionsRolledBackTotalCount

Timed Out Transactions

Provides a count of the total number of transactions that have timed out for this EJB.

MBean Attribute:
EJBTransactionRuntimeMBean.TransactionsTimedOutTotalCount

Related Tasks

Related Topics


Back to Top