Oracle Fusion Middleware
Oracle WebLogic Server MBean Javadoc
12c Release 1 (12.1.1)

Part Number E24395-02

weblogic.management.runtime
Interface SAFStatisticsCommonMBean


public interface SAFStatisticsCommonMBean

This class is has all the common statistics stuff for a SAFAgentRuntimeMBean or a SAFRemoteEndpoitsRuntimeMBean.

Deprecation of MBeanHome and Type-Safe Interfaces

This is a type-safe interface for a WebLogic Server MBean, which you can import into your client classes and access through weblogic.management.MBeanHome. As of 9.0, the MBeanHome interface and all type-safe interfaces for WebLogic Server MBeans are deprecated. Instead, client classes that interact with WebLogic Server MBeans should use standard JMX design patterns in which clients use the javax.management.MBeanServerConnection interface to discover MBeans, attributes, and attribute types at runtime. For more information, see "Developing Manageable Applications with JMX" on http://www.oracle.com/technology/products/weblogic/index.html.

Since:
9.0.0.0

Method Summary
 long getBytesCurrentCount()
          Returns the current number of bytes.
 long getBytesHighCount()
          Returns the peak number of bytes since the last reset.
 long getBytesPendingCount()
          Returns the number of pending bytes.
 long getBytesReceivedCount()
          The number of bytes received since the last reset.
 long getBytesThresholdTime()
          Returns the amount of time in the threshold condition since the last reset.
 long getFailedMessagesTotal()
          Returns the total number of messages that have failed to be forwarded since the last reset.
 long getMessagesCurrentCount()
          Returns the current number of messages.
 long getMessagesHighCount()
          Returns the peak number of messages since the last reset.
 long getMessagesPendingCount()
          Returns the number of pending messages.
 long getMessagesReceivedCount()
          The number of messages received since the last reset.
 long getMessagesThresholdTime()
          Returns the amount of time in the threshold condition since the last reset.
 

Method Detail

getMessagesCurrentCount

long getMessagesCurrentCount()

Returns the current number of messages. This number includes the pending messages.

Returns:
The messagesCurrentCount value

getMessagesPendingCount

long getMessagesPendingCount()

Returns the number of pending messages. Pending messages are over and above the current number of messages. A pending message is one that has either been sent in a transaction and not committed, or been forwarded but has not been acknowledged.

Returns:
The messagesPendingCount value

getMessagesHighCount

long getMessagesHighCount()

Returns the peak number of messages since the last reset.

Returns:
The messagesHighCount value

getMessagesReceivedCount

long getMessagesReceivedCount()

The number of messages received since the last reset.

Returns:
The messagesReceivedCount value

getMessagesThresholdTime

long getMessagesThresholdTime()

Returns the amount of time in the threshold condition since the last reset.

Returns:
The messagesThresholdTime value

getBytesPendingCount

long getBytesPendingCount()

Returns the number of pending bytes. Pending bytes are over and above the current number of bytes.

Returns:
The bytesPendingCount value

getBytesCurrentCount

long getBytesCurrentCount()

Returns the current number of bytes. This number does not include the pending bytes.

Returns:
The bytesCurrentCount value

getBytesHighCount

long getBytesHighCount()

Returns the peak number of bytes since the last reset.

Returns:
The bytesHighCount value

getBytesReceivedCount

long getBytesReceivedCount()

The number of bytes received since the last reset.

Returns:
The bytesReceivedCount value

getBytesThresholdTime

long getBytesThresholdTime()

Returns the amount of time in the threshold condition since the last reset.

Returns:
The bytesThresholdTime value

getFailedMessagesTotal

long getFailedMessagesTotal()

Returns the total number of messages that have failed to be forwarded since the last reset.

Returns:
The failedMessagesTotal value

Copyright 1996, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Oracle WebLogic Server MBean Javadoc
12c Release 1 (12.1.1)

Part Number E24395-02